Dart API Referencedart:coreimplRuntimeOptions

RuntimeOptions Class

Implements

Options

Methods

Code List<String> get arguments() #

List<String> get arguments() {
  if (_arguments === null) {
    // On first access make a copy of the native arguments.
    _arguments = _nativeArguments.getRange(0, _nativeArguments.length);
  }
  return _arguments;
}

Code String get executable() #

String get executable() {
  return _nativeExecutable;
}

Code String get script() #

String get script() {
  return _nativeScript;
}