getDouble static method

double? getDouble(
  1. String key
)

Implementation

static double? getDouble(String key) {
  checkInit();
  if (_justCache)
    return cache['$prefix$key'];
  else
    return sharedPreferences!.getDouble('$prefix$key');
}