setDouble static method

Future<bool?> setDouble(
  1. String key,
  2. double value
)

Implementation

static Future<bool?> setDouble(String key, double value) async =>
    await _prefs?.setDouble(key, value);