移除某个键
Future<bool> remove(String key) async { await ensureInitialized(); return _prefs?.remove(key) ?? false; }