Creates a deep copy of otherSchema.
Source
Schema.from(Schema otherSchema) {
_tables = otherSchema?.tables?.map((table) => new SchemaTable.from(table))?.toList() ?? [];
}
Creates a deep copy of otherSchema.
Schema.from(Schema otherSchema) {
_tables = otherSchema?.tables?.map((table) => new SchemaTable.from(table))?.toList() ?? [];
}