getStringList method

List<String> getStringList(
  1. String key
)

Force-gets the value for the given key, throws if null or wrong type

Implementation

List<String> getStringList(String key) =>
    (_internalMap[key] as List<Object?>).map((e) => e.toString()).toList();