Input$CreateIssueInput constructor

Input$CreateIssueInput({
  1. List<String>? assigneeIds,
  2. String? body,
  3. String? clientMutationId,
  4. String? issueTemplate,
  5. List<String>? labelIds,
  6. String? milestoneId,
  7. List<String>? projectIds,
  8. required String repositoryId,
  9. required String title,
})

Implementation

Input$CreateIssueInput(
    {this.assigneeIds,
    this.body,
    this.clientMutationId,
    this.issueTemplate,
    this.labelIds,
    this.milestoneId,
    this.projectIds,
    required this.repositoryId,
    required this.title});