isRunningAot abstract method
Returns true
if the application is running with AOT (Ahead-of-Time) compilation.
Example:
if (env.isRunningAot()) {
print('Optimized AOT runtime');
}
Implementation
bool isRunningAot();
Returns true
if the application is running with AOT (Ahead-of-Time) compilation.
Example:
if (env.isRunningAot()) {
print('Optimized AOT runtime');
}
bool isRunningAot();