isIdeRunning abstract method

bool isIdeRunning()

Returns true if the application was launched from an IDE environment.

Example:

if (env.isIdeRunning()) {
  print('IDE mode enabled');
}

Implementation

bool isIdeRunning();