Schema.from(Schema otherSchema)

Source

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