getDouble static method

Future<double?> getDouble(
  1. String key
)

Retrieves a stored double value.

Implementation

static Future<double?> getDouble(String key) async {
  return _sharedPreferences.getDouble(key);
}