Source
Schema.from(Schema otherSchema) {
tables = otherSchema?.tables
?.map((table) => new SchemaTable.from(table))
?.toList() ??
[];
}
Schema.from(Schema otherSchema) {
tables = otherSchema?.tables
?.map((table) => new SchemaTable.from(table))
?.toList() ??
[];
}