SchemaIndex constructor

const SchemaIndex({
  1. required String name,
  2. required List<String> columns,
  3. String? schema,
  4. String? tableName,
  5. bool unique = false,
  6. bool primary = false,
  7. String? method,
  8. String? whereClause,
  9. String? type,
  10. bool sparse = false,
})

Implementation

const SchemaIndex({
  required this.name,
  required this.columns,
  this.schema,
  this.tableName,
  this.unique = false,
  this.primary = false,
  this.method,
  this.whereClause,
  this.type,
  this.sparse = false,
});