copyWith method

Input$MoveProjectColumnInput copyWith({
  1. String? afterColumnId()?,
  2. String? clientMutationId()?,
  3. String? columnId,
})

Implementation

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