Error constructor

Error(
  1. dynamic objectType,
  2. dynamic mode,
  3. String? code,
  4. List<Error>? errors,
  5. String? field,
  6. String? message,
  7. String? suggestion
)

Implementation

Error(
  objectType,
  mode,
  this.code,
  this.errors,
  this.field,
  this.message,
  this.suggestion,
) : super(objectType, mode);