Index function

IndexInfo Index(
  1. String table,
  2. List<String> columns, {
  3. bool unique = false,
  4. String? using,
  5. String? ops,
  6. String? where,
})

Implementation

IndexInfo Index(String table, List<String> columns,
    {bool unique = false, String? using, String? ops, String? where})
=> IndexInfo(table, columns, unique: unique, using: using, ops: ops,
    where: where);