getAppPreLogoPath static method

String getAppPreLogoPath()

Implementation

static String getAppPreLogoPath() {
  switch (AppConfig.instance.appInUse) {
    case AppInUse.g:
      return '';
    case AppInUse.e:
      return AppAssets.logoAppWhite;
    case AppInUse.c:
      return '';
    default:
      return '';
  }
}