isDevelopmentMode abstract method

bool isDevelopmentMode()

Returns true if the application is running in development mode.

Example:

if (env.isDevelopmentMode()) {
  print('Development environment');
}

Implementation

bool isDevelopmentMode();