copyWith method

Input$DeleteProjectColumnInput copyWith({
  1. String? clientMutationId()?,
  2. String? columnId,
})

Implementation

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