OperationException constructor

OperationException({
  1. LinkException? linkException,
  2. StackTrace? originalStackTrace,
  3. List? raw,
  4. Iterable<GraphQLError> graphqlErrors = const [],
})

Implementation

OperationException({
  this.linkException,
  this.originalStackTrace,
  this.raw,
  Iterable<GraphQLError> graphqlErrors = const [],
}) : this.graphqlErrors = graphqlErrors.toList();