withFocusNode method

TestDocumentConfigurator withFocusNode(
  1. FocusNode? focusNode
)

Configures the SuperReader to use the given focusNode

Implementation

TestDocumentConfigurator withFocusNode(FocusNode? focusNode) {
  _focusNode = focusNode;
  return this;
}