getSingleTypeDesc static method
Returns the translation key for the single release type description per app flavour.
Implementation
static String getSingleTypeDesc() {
switch (AppConfig.instance.appInUse) {
case AppInUse.e: return 'singleTypeDescE';
case AppInUse.c: return 'singleTypeDescC';
default: return 'singleTypeDescG';
}
}