indexInfos property

List<IndexInfo> get indexInfos

The indexes as the IndexInfo the DDL generators consume.

Implementation

List<IndexInfo> get indexInfos => [
      for (final index in indexes.values) index.toIndexInfo(),
    ];