WebSocketLinkServerException constructor

const WebSocketLinkServerException({
  1. Object? originalException,
  2. StackTrace? originalStackTrace,
  3. Response? parsedResponse,
  4. GraphQLSocketMessage? requestMessage,
})

Implementation

const WebSocketLinkServerException({
  Object? originalException,
  StackTrace? originalStackTrace,
  Response? parsedResponse,
  this.requestMessage,
}) : super(
        originalException: originalException,
        originalStackTrace: originalStackTrace,
        parsedResponse: parsedResponse,
      );