copyWith method
Relation
copyWith({
- int? id,
- String? schema,
- String? table,
- SatRelation_RelationType? tableType,
- List<
RelationColumn> ? columns,
Implementation
Relation copyWith({
int? id,
String? schema,
String? table,
SatRelation_RelationType? tableType,
List<RelationColumn>? columns,
}) {
return Relation(
id: id ?? this.id,
schema: schema ?? this.schema,
table: table ?? this.table,
tableType: tableType ?? this.tableType,
columns: columns ?? this.columns,
);
}