Problem constructor

Problem({
  1. String? type,
  2. String? title,
  3. String? detail,
  4. ProblemEmbedded? embedded,
})

Returns a new Problem instance.

Implementation

Problem({
  this.type,
  this.title,
  this.detail,
  this.embedded,
});