NotebookDocumentShowOptions constructor

NotebookDocumentShowOptions({
  1. ViewColumn? viewColumn,
  2. bool? preserveFocus,
  3. bool? preview,
  4. List<NotebookRange>? selections,
})

Implementation

factory NotebookDocumentShowOptions({
  _i3.ViewColumn? viewColumn,
  _i2.bool? preserveFocus,
  _i2.bool? preview,
  _i2.List<_i3.NotebookRange>? selections,
}) =>
    NotebookDocumentShowOptions._(
      viewColumn: viewColumn?.name,
      preserveFocus: preserveFocus,
      preview: preview,
      selections: selections ?? _i6.undefined,
    );