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