getStringList method

List<String>? getStringList(
  1. String key, {
  2. String? defaultValue,
})

Get the List

Implementation

List<String>? getStringList(String key, {String? defaultValue}) {
  assert(_key != null);
  return _decorator.getStringList(key);
}