getMap<TKey, TValue> method

Map<TKey, TValue>? getMap<TKey, TValue>(
  1. String key
)

Implementation

Map<TKey, TValue>? getMap<TKey, TValue>(String key) {
  var map = _getEntry(
      key, ConfigurationEntryValueType.ConfigurationEntryValueType_JSON);
  return (map as Map).cast<TKey, TValue>();
}