NotebookDocumentChangeEvent constructor
NotebookDocumentChangeEvent({
- NotebookDocument? notebook,
- Object? metadata,
- List<
NotebookDocumentContentChange> ? contentChanges, - List<
NotebookDocumentCellChange> ? cellChanges,
Implementation
factory NotebookDocumentChangeEvent({
_i3.NotebookDocument? notebook,
_i2.Object? metadata,
_i2.List<_i3.NotebookDocumentContentChange>? contentChanges,
_i2.List<_i3.NotebookDocumentCellChange>? cellChanges,
}) =>
NotebookDocumentChangeEvent._(
notebook: notebook ?? _i6.undefined,
metadata: metadata ?? _i6.undefined,
contentChanges: contentChanges ?? _i6.undefined,
cellChanges: cellChanges ?? _i6.undefined,
);