NotebookDocumentCellChange constructor
NotebookDocumentCellChange({
- NotebookCell? cell,
- TextDocument? document,
- Object? metadata,
- List<
NotebookCellOutput> ? outputs, - NotebookCellExecutionSummary? executionSummary,
Implementation
factory NotebookDocumentCellChange({
_i3.NotebookCell? cell,
_i3.TextDocument? document,
_i2.Object? metadata,
_i2.List<_i3.NotebookCellOutput>? outputs,
_i3.NotebookCellExecutionSummary? executionSummary,
}) =>
NotebookDocumentCellChange._(
cell: cell ?? _i6.undefined,
document: document ?? _i6.undefined,
metadata: metadata ?? _i6.undefined,
outputs: outputs ?? _i6.undefined,
executionSummary: executionSummary ?? _i6.undefined,
);