withSelectionStyles method

TestSuperEditorConfigurator withSelectionStyles(
  1. SelectionStyles? styles
)

Configures the SuperEditor with the given selection styles, which dictate the color of the primary user's selection, and related selection details.

Implementation

TestSuperEditorConfigurator withSelectionStyles(SelectionStyles? styles) {
  _config.selectionStyles = styles;
  return this;
}