Source
SchemaTable.from(SchemaTable otherTable) {
name = otherTable.name;
columns =
otherTable.columns.map((col) => new SchemaColumn.from(col)).toList();
}
SchemaTable.from(SchemaTable otherTable) {
name = otherTable.name;
columns =
otherTable.columns.map((col) => new SchemaColumn.from(col)).toList();
}