Index constructor

const Index({
  1. List<String> columns = const [],
  2. String? name,
  3. bool unique = false,
  4. List<IndexOrder> orders = const [],
})

Implementation

const Index({
  this.columns = const [],
  this.name,
  this.unique = false,
  this.orders = const [],
});