isIdeRunning method

  1. @override
bool isIdeRunning()
inherited

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

Example:

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

Implementation

@override
bool isIdeRunning() => _ideRunning;