getDouble static method

double getDouble(
  1. String key, {
  2. double defaultValue = 0.0,
})

Gets a double value from SharedPreferences.

Implementation

static double getDouble(String key, {double defaultValue = 0.0}) {
  return prefs!.getDouble(key) ?? defaultValue;
}