showBooksLibrary static method

bool showBooksLibrary()

Implementation

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