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