getAlbumTypeName static method

String getAlbumTypeName()

Returns the translation key for the album release type name per app flavour.

Implementation

static String getAlbumTypeName() {
  switch (AppConfig.instance.appInUse) {
    case AppInUse.e: return 'albumTypeNameE';
    case AppInUse.c: return 'albumTypeNameC';
    default: return 'albumTypeNameG';
  }
}