Returns true if the application is running with AOT (Ahead-of-Time) compilation.
true
Example:
if (env.isRunningAot()) { print('Optimized AOT runtime'); }
@override bool isRunningAot() => _runningAot;