operator [] method

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

As ListMultimap, but results are ListBuilders.

Implementation

ListBuilder<V> operator [](Object? key) {
  _makeWriteableCopy();
  return key is K ? _getValuesBuilder(key) : ListBuilder<V>();
}