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