tablesIndexesVersions property

Map<String, Map<String, int>> tablesIndexesVersions

Implementation

Map<String, Map<String, int>> get tablesIndexesVersions =>
    _tablesIndexesVersions ??= UnmodifiableMapView(_tablesIndexes.map(
        (table, fieldIndex) => MapEntry(
            table,
            fieldIndex
                .map((field, index) => MapEntry(field, index.version)))));