Future<bool> removeItem(String key) async { try { await _lazyBox.delete(key); return true; } catch (e) { return false; } }