IssueModel constructor

IssueModel(
  1. String name,
  2. String subject,
  3. String status,
  4. String raised_by,
  5. String priority,
  6. String issue_type,
  7. String customer,
)

Implementation

IssueModel(
  this.name,
  this.subject,
  this.status,
  this.raised_by,
  this.priority,
  this.issue_type,
  this.customer,
);