WebSocketLinkParserException constructor

const WebSocketLinkParserException({
  1. Object? originalException,
  2. StackTrace? originalStackTrace,
  3. required GraphQLSocketMessage message,
})

Implementation

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