getAll method

Returns all config values.

Implementation

Map<String, RemoteConfigValue> getAll() {
  final keys = js_interop.objectKeys(jsObject.getAll());
  final entries = keys.map<MapEntry<String, RemoteConfigValue>>(
      (dynamic k) => MapEntry<String, RemoteConfigValue>(k, getValue(k)));
  return Map<String, RemoteConfigValue>.fromEntries(entries);
}