deepCopyWith method
Implementation
@override
MariaDbTable deepCopyWith({
String? name,
}) {
final tbl = MariaDbTable(name: name ?? this.name);
for (final col in _columns) {
tbl._columns.add(col.deepCopyWith());
}
return tbl;
}
@override
MariaDbTable deepCopyWith({
String? name,
}) {
final tbl = MariaDbTable(name: name ?? this.name);
for (final col in _columns) {
tbl._columns.add(col.deepCopyWith());
}
return tbl;
}