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