clear method

void clear()

Clears all settings by calling Setting.reset on each setting in the cache.

Implementation

void clear() {
  for (final s in _cache.value.values) {
    s.reset();
  }
}