setDouble method

Future<bool> setDouble(
  1. String dataKey,
  2. double? dataValue, {
  3. bool notify = true,
})

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);
}