ErrorResponse constructor

ErrorResponse({
  1. dynamic result,
  2. num? errorCode,
  3. String? errorMessage,
  4. List<Errors>? errors,
})

Implementation

ErrorResponse({
  this.result,
  this.errorCode,
  this.errorMessage,
  this.errors,
});