ApiErrorDetails constructor

ApiErrorDetails({
  1. String? field,
  2. String? value,
  3. String? location,
  4. required String issue,
  5. String? description,
})

Implementation

ApiErrorDetails({
  this.field,
  this.value,
  this.location,
  required this.issue,
  this.description,
});