copyWith method

TableWithJoins copyWith({
  1. TableFactor? relation,
  2. List<Join>? joins,
})

Returns a new instance by overriding the values passed as arguments

Implementation

TableWithJoins copyWith({
  TableFactor? relation,
  List<Join>? joins,
}) =>
    TableWithJoins(
        relation: relation ?? this.relation, joins: joins ?? this.joins);