isRunningJit method

  1. @override
bool isRunningJit()
inherited

Returns true if the application is running with JIT (Just-in-Time) compilation.

Example:

if (env.isRunningJit()) {
  print('Dynamic JIT runtime');
}

Implementation

@override
bool isRunningJit() => _runningJit;