GraphQLResponse<T> constructor

const GraphQLResponse<T>({
  1. T? data,
  2. required List<GraphQLResponseError> errors,
})

Implementation

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