Error constructor

Error({
  1. List<String>? codes,
  2. List? arguments,
  3. String? defaultMessage,
  4. String? objectName,
  5. String? field,
  6. String? rejectedValue,
  7. bool? bindingFailure,
  8. String? code,
})

Implementation

Error({
  this.codes,
  this.arguments,
  this.defaultMessage,
  this.objectName,
  this.field,
  this.rejectedValue,
  this.bindingFailure,
  this.code,
});