runningJit method

SystemPropertiesBuilder runningJit(
  1. bool value
)

Sets whether the app is running in JIT mode.

Implementation

SystemPropertiesBuilder runningJit(bool value) {
  _runningJit = value;
  return this;
}