asMap method

  1. @override
Map<String, List<V>> asMap()

Return a view of this TTMultiMap as a Map

Implementation

@override
Map<String, List<V>> asMap() => {
      for (final key in keys) key: this[key]!,
    };