import 'package:shared_preferences/shared_preferences.dart'; class Preferences { static const isFinishOnBoardingKey = "isFinishOnBoardingKey"; static const isLogin = "isLogin"; static const accessToken = "accessToken"; static const userData = "userData"; static const themKey = "themKey"; static const languageCodeKey = 'languageCodeKey'; static const zipcode = 'zipcode'; static const foodDeliveryType = "foodDeliveryType"; static const payFastSettings = "payFastSettings"; static const mercadoPago = "MercadoPago"; static const paypalSettings = "paypalSettings"; static const stripeSettings = "stripeSettings"; static const flutterWave = "flutterWave"; static const payStack = "payStack"; static const paytmSettings = "PaytmSettings"; static const walletSettings = "walletSettings"; static const razorpaySettings = "razorpaySettings"; static const codSettings = "CODSettings"; static const midTransSettings = "midTransSettings"; static const orangeMoneySettings = "orangeMoneySettings"; static const xenditSettings = "xenditSettings"; static late SharedPreferences pref; static Future initPref() async { pref = await SharedPreferences.getInstance(); } /// Get boolean safely, fallback if stored value is string static bool getBoolean(String key) { final value = pref.get(key); if (value is bool) return value; if (value is String) { // fallback for old string "Dark"/"Light" return value.toLowerCase() == "dark"; } return false; } static Future setBoolean(String key, bool value) async { await pref.setBool(key, value); } static String getString(String key, {String? defaultValue}) { return pref.getString(key) ?? defaultValue ?? ""; } static Future setString(String key, String value) async { await pref.setString(key, value); } static int getInt(String key) { return pref.getInt(key) ?? 0; } static Future setInt(String key, int value) async { await pref.setInt(key, value); } static Future clearSharPreference() async { await pref.clear(); } static Future clearKeyData(String key) async { await pref.remove(key); } }