Rumahjo-Android-APP/lib/utils/hive_keys.dart
2024-09-07 07:58:50 +07:00

27 lines
934 B
Dart

class HiveKeys {
//Box
static const String userDetailsBox = "userDetailsBox";
static const String city = "city";
static const String cityTeemp = "cityTeemp";
static const String cityPlaceId = "placeId";
static const String stateKey = "state";
static const String countryKey = "country";
static const String jwtToken = "token";
static const String svgBox = "svgBox";
static const String themeColorBox = "themeColorBox";
//Box
static const String authBox = "authBox";
static const String isAuthenticated = "isAuthenticated";
static const String isUserFirstTime = "isUserFirstTime";
static const String isProfileCompleted = "isProfileCompleted";
static String languageBox = "language";
static String currentLanguageKey = "currentLanguage";
static String themeBox = "themeBox";
static String currentTheme = "currentTheme";
static var latitude = "latitude";
static var longitude = "longitude";
}