TextDocumentShowOptions constructor
TextDocumentShowOptions({
- ViewColumn? viewColumn,
- bool? preserveFocus,
- bool? preview,
- Range? selection,
Implementation
factory TextDocumentShowOptions({
_i3.ViewColumn? viewColumn,
_i2.bool? preserveFocus,
_i2.bool? preview,
_i3.Range? selection,
}) =>
TextDocumentShowOptions._(
viewColumn: viewColumn?.name,
preserveFocus: preserveFocus,
preview: preview,
selection: selection ?? _i6.undefined,
);