operator [] method

BuiltList<V> operator [](
  1. Object? key
)

As ListMultimap, but results are BuiltLists and not mutable.

Implementation

BuiltList<V> operator [](Object? key) {
  var result = _map[key];
  return result ?? _emptyList;
}