copyWith method

Input$AddProjectColumnInput copyWith({
  1. String? clientMutationId()?,
  2. String? name,
  3. String? projectId,
})

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);