static Future<bool> remove({required String key}) async { if (_prefs == null) await init(); return await _prefs!.remove(key); }