NotebookDocumentChangeEvent constructor

NotebookDocumentChangeEvent({
  1. NotebookDocument? notebook,
  2. Object? metadata,
  3. List<NotebookDocumentContentChange>? contentChanges,
  4. 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,
    );