PullRequestEvent constructor

PullRequestEvent({
  1. String? action,
  2. int? number,
  3. PullRequest? pullRequest,
  4. User? sender,
  5. Repository? repository,
})

Implementation

PullRequestEvent({
  this.action,
  this.number,
  this.pullRequest,
  this.sender,
  this.repository,
});