operator [] method

  1. @override
Iterable<TValue> operator [] (
  1. TKey key
)
override

Implementation

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