SchemaIndex constructor

SchemaIndex({
  1. required List<String> columns,
  2. String? tableName,
  3. required bool unique,
})

Implementation

SchemaIndex({
  required this.columns,
  this.tableName,
  required this.unique,
});