operator [] method
- @override
- TKey key
override
Implementation
@override
Iterable<TValue> operator [](TKey key) {
final grouping = getGrouping(key, false);
if (grouping != null) return grouping;
return Iterable<TValue>.empty();
}
@override
Iterable<TValue> operator [](TKey key) {
final grouping = getGrouping(key, false);
if (grouping != null) return grouping;
return Iterable<TValue>.empty();
}