IssueCommentEvent constructor

IssueCommentEvent({
  1. String? action,
  2. Issue? issue,
  3. IssueComment? comment,
})

Implementation

IssueCommentEvent({
  this.action,
  this.issue,
  this.comment,
});