clear method

void clear()

Removes all elements from the IDictionary.

Implementation

void clear() {
  for (final MapEntry<String, Format> format in _hashFormatStrings.entries) {
    format.value.clear();
  }
  _rawFormats.clear();
  _hashFormatStrings.clear();
  _defaultFormatString.clear();
}