standardOutput property
TextOutputMethod
get
standardOutput
standardOutput: receives the output of the "print" intrinsic.
Implementation
TextOutputMethod get standardOutput => _standardOutput;
set
standardOutput
(TextOutputMethod value)
Implementation
set standardOutput(TextOutputMethod value) {
_standardOutput = value;
if (vm != null) vm!.standardOutput = value;
}