setDouble static method

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

Implementation

static Future<bool> setDouble(String key, double value) async {
  final prefs = await _getInstance();
  return await prefs.setDouble(key, value);
}