withTapDelegateFactories method

TestSuperEditorConfigurator withTapDelegateFactories(
  1. List<SuperEditorContentTapDelegateFactory>? tapDelegateFactories
)

Configures the SuperEditor to use only the given tapDelegateFactories.

Implementation

TestSuperEditorConfigurator withTapDelegateFactories(
    List<SuperEditorContentTapDelegateFactory>? tapDelegateFactories) {
  _config.tapDelegateFactories = tapDelegateFactories;
  return this;
}