showBlog static method

bool showBlog()

Implementation

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