IssueRequest constructor

IssueRequest(
  1. {String? title,
  2. String? body,
  3. List<String>? labels,
  4. String? assignee,
  5. String? state,
  6. int? milestone}
)

Implementation

IssueRequest(
    {this.title,
    this.body,
    this.labels,
    this.assignee,
    this.state,
    this.milestone});