withScrollController method

TestSuperEditorConfigurator withScrollController(
  1. ScrollController? scrollController
)

Configures the SuperEditor to use the given scrollController

Implementation

TestSuperEditorConfigurator withScrollController(ScrollController? scrollController) {
  _config.scrollController = scrollController;
  return this;
}