getString method
Get the string value associated with the specified key.
Implementation
Future<String?> getString(String key, {String? defaultValue}) {
assert(_key != null);
return _decorator.getString(key, defaultValue: defaultValue);
}
Get the string value associated with the specified key.
Future<String?> getString(String key, {String? defaultValue}) {
assert(_key != null);
return _decorator.getString(key, defaultValue: defaultValue);
}