TF-1205: rename class

This commit is contained in:
ManhNTX
2022-11-22 13:56:41 +07:00
committed by Dat H. Pham
parent 036ebbeb2f
commit d2da7f23b1
47 changed files with 352 additions and 390 deletions
+9
View File
@@ -12,4 +12,13 @@ class AppConfig {
return false;
}
static String appDashboardConfigurationPath = "configurations/app_dashboard.json";
static bool get appFCMAvailable {
final supported = dotenv.get('FCM_AVAILABLE', fallback: 'unsupported');
if (supported == 'supported') {
return true;
}
return false;
}
static String appFCMConfigurationPath = "configurations/env.fcm";
}