copyWith method
Implementation
Input$UpdateIssueInput copyWith(
{List<String>? Function()? assigneeIds,
String? Function()? body,
String? Function()? clientMutationId,
String? id,
List<String>? Function()? labelIds,
String? Function()? milestoneId,
List<String>? Function()? projectIds,
Enum$IssueState? Function()? state,
String? Function()? title}) =>
Input$UpdateIssueInput(
assigneeIds: assigneeIds == null ? this.assigneeIds : assigneeIds(),
body: body == null ? this.body : body(),
clientMutationId: clientMutationId == null
? this.clientMutationId
: clientMutationId(),
id: id == null ? this.id : id,
labelIds: labelIds == null ? this.labelIds : labelIds(),
milestoneId: milestoneId == null ? this.milestoneId : milestoneId(),
projectIds: projectIds == null ? this.projectIds : projectIds(),
state: state == null ? this.state : state(),
title: title == null ? this.title : title());