runningFromDill method

SystemPropertiesBuilder runningFromDill(
  1. bool value
)

Sets whether the app is running from a .dill file.

Implementation

SystemPropertiesBuilder runningFromDill(bool value) {
  _runningFromDill = value;
  return this;
}