IssueEvent constructor

IssueEvent({
  1. String? action,
  2. User? assignee,
  3. IssueLabel? label,
  4. Issue? issue,
  5. User? sender,
  6. Repository? repository,
})

Implementation

IssueEvent({
  this.action,
  this.assignee,
  this.label,
  this.issue,
  this.sender,
  this.repository,
});