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