TextDocumentShowOptions constructor

TextDocumentShowOptions({
  1. ViewColumn? viewColumn,
  2. bool? preserveFocus,
  3. bool? preview,
  4. 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,
    );