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