withSelection method

TestDocumentConfigurator withSelection(
  1. DocumentSelection? selection
)

Configures the SuperReader to use the given selection as its initial selection.

Implementation

TestDocumentConfigurator withSelection(DocumentSelection? selection) {
  _selection = selection;
  return this;
}