Future<bool> setDouble( String key, double value, { Duration? expiration, }) async { if (!await _setExpiration(key, expiration)) return false; return sp.setDouble(key, value); }