IndexInfo constructor

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

Implementation

IndexInfo(String this.table, List<String> this.columns,
  {this.unique = false, this.using, this.ops, this.where});