Response constructor

const Response(
  1. {List<GraphQLError>? errors,
  2. Map<String, dynamic>? data,
  3. Context context = const Context(),
  4. required Map<String, dynamic> response}
)

Implementation

const Response({
  this.errors,
  this.data,
  this.context = const Context(),
  required this.response,
});