setDouble method
Set the double value for the specified key in SharedPreferences.
Implementation
Future<bool> setDouble(String dataKey, double? dataValue,
{bool notify = true}) async {
assert(_key != null);
return _decorator.setDouble(dataKey, dataValue, notify: notify);
}