runningAot method

SystemPropertiesBuilder runningAot(
  1. bool value
)

Sets whether the app is running in AOT mode.

Implementation

SystemPropertiesBuilder runningAot(bool value) {
  _runningAot = value;
  return this;
}