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