isDebuggingEnabled static method

bool isDebuggingEnabled()

Check if the app is in debug mode

Implementation

static bool isDebuggingEnabled() {
  return getEnv('APP_DEBUG', defaultValue: false);
}