getSingleTypeName static method
Returns the translation key for the single release type name per app flavour.
Implementation
static String getSingleTypeName() {
switch (AppConfig.instance.appInUse) {
case AppInUse.e: return 'singleTypeNameE';
case AppInUse.c: return 'singleTypeNameC';
default: return 'singleTypeNameG';
}
}