copyWith method
Implementation
Input$UpdateProjectNextItemFieldInput copyWith(
{String? Function()? clientMutationId,
String? fieldId,
String? itemId,
String? projectId,
String? value}) =>
Input$UpdateProjectNextItemFieldInput(
clientMutationId: clientMutationId == null
? this.clientMutationId
: clientMutationId(),
fieldId: fieldId == null ? this.fieldId : fieldId,
itemId: itemId == null ? this.itemId : itemId,
projectId: projectId == null ? this.projectId : projectId,
value: value == null ? this.value : value);