NotebookCellExecution constructor
NotebookCellExecution({
- NotebookCell? cell,
- CancellationToken? token,
- num? executionOrder,
- void start([
- num?
- void end([])?,
- Future clearOutput([])?,
- Future replaceOutput(
- Object, [
- NotebookCell?
- Future appendOutput(
- Object, [
- NotebookCell?
- Future replaceOutputItems()?,
- Future appendOutputItems()?,
Implementation
factory NotebookCellExecution({
_i3.NotebookCell? cell,
_i3.CancellationToken? token,
_i2.num? executionOrder,
void Function([_i2.num?])? start,
void Function([
_i2.bool?,
_i2.num?,
])? end,
_i2.Future<_i2.dynamic> Function([_i3.NotebookCell?])? clearOutput,
_i2.Future<_i2.dynamic> Function(
_i2.Object, [
_i3.NotebookCell?,
])? replaceOutput,
_i2.Future<_i2.dynamic> Function(
_i2.Object, [
_i3.NotebookCell?,
])? appendOutput,
_i2.Future<_i2.dynamic> Function(
_i2.Object,
_i3.NotebookCellOutput,
)? replaceOutputItems,
_i2.Future<_i2.dynamic> Function(
_i2.Object,
_i3.NotebookCellOutput,
)? appendOutputItems,
}) =>
NotebookCellExecution._(
cell: cell ?? _i6.undefined,
token: token ?? _i6.undefined,
executionOrder: executionOrder ?? _i6.undefined,
start: start == null ? null : _i5.allowInterop(start),
end: end == null ? null : _i5.allowInterop(end),
clearOutput: clearOutput == null ? null : _i5.allowInterop(clearOutput),
replaceOutput:
replaceOutput == null ? null : _i5.allowInterop(replaceOutput),
appendOutput:
appendOutput == null ? null : _i5.allowInterop(appendOutput),
replaceOutputItems: replaceOutputItems == null
? null
: _i5.allowInterop(replaceOutputItems),
appendOutputItems: appendOutputItems == null
? null
: _i5.allowInterop(appendOutputItems),
);