Issue constructor

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

Implementation

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