withCaretPolicies method

TestSuperEditorConfigurator withCaretPolicies({
  1. bool? displayCaretWithExpandedSelection,
})

Implementation

TestSuperEditorConfigurator withCaretPolicies({
  bool? displayCaretWithExpandedSelection,
}) {
  if (displayCaretWithExpandedSelection != null) {
    _config.displayCaretWithExpandedSelection = displayCaretWithExpandedSelection;
  }
  return this;
}