withScrollController method

TestDocumentConfigurator withScrollController(
  1. ScrollController? scrollController
)

Configures the SuperReader to use the given scrollController

Implementation

TestDocumentConfigurator withScrollController(ScrollController? scrollController) {
  _scrollController = scrollController;
  return this;
}