IssueInfo constructor

IssueInfo({
  1. required String owner,
  2. required String repo,
  3. int? number,
})

Constructs a new instance of the IssueInfo class.

Implementation

IssueInfo({
  required this.owner,
  required this.repo,
  this.number,
});