Schema.from(Schema otherSchema)

Creates a deep copy of otherSchema.

Source

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