static Future<void> remove(String key) async { try { if (_pref == null) await _init(); _pref!.remove(key); } catch (e) { logs(e); } }