showWallet static method

bool showWallet()

Implementation

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