getDouble static method

double? getDouble(
  1. String key
)

Gets a double value from storage.

Implementation

static double? getDouble(String key) {
  _ensureInitialized();
  return _prefs!.getDouble(key);
}