SchemaTable.from(SchemaTable otherTable)

Source

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