EchoResponse constructor

EchoResponse({
  1. List<ResponseError>? errors,
  2. List<Field>? fields,
  3. required String status,
})

Implementation

EchoResponse({
  this.errors,
  this.fields,
  required this.status,
});