transientOutputs property
bool?
get
transientOutputs
Controls if output change events will trigger notebook document content change events and if it will be used in the diff editor, defaults to false. If the content provider doesn't persist the outputs in the file document, this should be set to true.
Implementation
_i2.bool? get transientOutputs => _i5.getProperty(
this,
'transientOutputs',
);
set
transientOutputs
(bool? value)
Implementation
set transientOutputs(_i2.bool? value) {
_i5.setProperty(
this,
'transientOutputs',
value ?? _i6.undefined,
);
}