IssueRequest constructor

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

Implementation

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