IndexSnapshot constructor

const IndexSnapshot({
  1. required String name,
  2. required String tableName,
  3. required List<String> columns,
  4. bool isUnique = false,
  5. String? where,
})

Creates a snapshot of a single index.

Implementation

const IndexSnapshot({
  required this.name,
  required this.tableName,
  required this.columns,
  this.isUnique = false,
  this.where,
});