Index.ascending constructor
Construct a new index with the specified column names.
Implementation
factory Index.ascending(String name, List<String> columns) {
return Index(name,
columns.map((e) => IndexedColumn.ascending(e)).toList(growable: false));
}