Issue constructor

Issue({
  1. List<String>? applicableCountries,
  2. String? attribute,
  3. String? description,
  4. String? destination,
  5. String? resolution,
  6. String? severity,
  7. String? timestamp,
  8. String? title,
  9. String? type,
})

Implementation

Issue({
  this.applicableCountries,
  this.attribute,
  this.description,
  this.destination,
  this.resolution,
  this.severity,
  this.timestamp,
  this.title,
  this.type,
});