isProduction property

  1. @deprecated
bool isProduction

Now deprecated, in favor of AngelEnv and angelEnv. Use app.environment.isProduction instead.

Indicates whether the application is running in a production environment.

The criteria for this is the ANGEL_ENV environment variable being set to 'production'.

This value is memoized the first time you call it, so do not change environment configuration at runtime!

Implementation

@deprecated
bool get isProduction => environment.isProduction;