withTapRegionGroupId method

TestSuperEditorConfigurator withTapRegionGroupId(
  1. String? tapRegionGroupId
)

Configures the SuperEditor to use the given tapRegionGroupId.

This DOESN'T wrap the editor with a TapRegion.

Implementation

TestSuperEditorConfigurator withTapRegionGroupId(String? tapRegionGroupId) {
  _config.tapRegionGroupId = tapRegionGroupId;
  return this;
}