GraphQLResponse<T> constructor

const GraphQLResponse<T>({
  1. T? data,
  2. List<GraphQLError>? errors,
  3. Context? context,
})

Instantiates a GraphQL response.

Implementation

const GraphQLResponse({
  this.data,
  this.errors,
  this.context,
});