HttpLinkParserException constructor

const HttpLinkParserException({
  1. required Object? originalException,
  2. required StackTrace? originalStackTrace,
  3. required Response response,
})

Implementation

const HttpLinkParserException({
  required Object? originalException,
  required StackTrace? originalStackTrace,
  required this.response,
}) : super(
        originalException: originalException,
        originalStackTrace: originalStackTrace,
      );