Future<String?> getString(String key) { try { return Future.value(_storage.get(key)); } catch (e) { return Future.value(null); } }