isNeomApp static method

bool isNeomApp()

Implementation

static bool isNeomApp() {

  switch(AppConfig.instance.appInUse) {
    case AppInUse.c:
    case AppInUse.o:
      return true;
    case AppInUse.g:
    case AppInUse.e:
    default:
      break;
  }

  return false;
}