clear method

void clear()

As ListMultimap.clear.

Any ListBuilders associated with this collection are disconnected.

Implementation

void clear() {
  _makeWriteableCopy();

  _builtMap.clear();
  _builderMap.clear();
}