DioLinkServerException constructor Null safety

const DioLinkServerException(
  1. {required Response response,
  2. required Response? parsedResponse,
  3. dynamic originalException}
)

Implementation

const DioLinkServerException({
  required this.response,
  required Response? parsedResponse,
  dynamic originalException,
}) : super(
        parsedResponse: parsedResponse,
        originalException: originalException,
      );