setDouble static method

dynamic setDouble(
  1. String key,
  2. double val
)

Implementation

static setDouble(String key, double val) {
  checkInit();
  if (_justCache)
    cache['$prefix$key'] = val;
  else
    sharedPreferences!.setDouble('$prefix$key', val);
}