ProblemDetails constructor

ProblemDetails({
  1. String? type,
  2. String? title,
  3. int? status,
  4. String? detail,
  5. String? instance,
})

Implementation

ProblemDetails({
  this.type,
  this.title,
  this.status,
  this.detail,
  this.instance,
});