12345678910111213141516171819202122232425 |
- import 'package:flutter/foundation.dart';
- import 'package:flutter/material.dart';
- class AppConstant {
-
- static const bool inProduction = kReleaseMode;
- static const String theme = 'AppTheme';
- static const String locale = 'locale';
-
- static const storageGuideFirst = 'storage_guide_first';
- static const storageToken = 'storage_token';
- static const storageNotificationEnable = 'storage_notification_enable';
- static const storageDeviceUUID = 'storage_device_uuid';
-
- static const eventProfile2Refresh = 'event_profile_refresh';
- static const eventLabourRequestRefresh = 'event_labour_request_refresh';
- static const eventAppliedListRefresh = 'event_applied_list_refresh';
- }
|