copyWith method

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

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