IndexInfo constructor
const
IndexInfo({})
Index information for DDL generation.
This is a simple data class that holds the information needed to generate DDL statements for index operations.
Implementation
const IndexInfo({
required this.name,
required this.tableName,
required this.columns,
this.isUnique = false,
this.where,
});