GraphqlExceptionsManager constructor

GraphqlExceptionsManager(
  1. Object request,
  2. QueryResult<Object?>? result,
  3. Map<String, dynamic> variables
)

Implementation

GraphqlExceptionsManager(this.request, this.result, this.variables) {
  if (result?.exception != null) {
    manage();
  }
}