StatusCause constructor

StatusCause({
  1. String? field,
  2. String? message,
  3. String? reason,
})

Implementation

StatusCause({
  this.field,
  this.message,
  this.reason,
});