tapRegionGroupId property

Object get tapRegionGroupId

The group ID object used by the bubble's TapRegion.

External widgets can wrap themselves with a TapRegion using this groupId to be considered "inside" the bubble. This prevents dismissOnBackgroundTap from triggering when tapping those widgets.

Example:

TapRegion(
  groupId: BubbleLabel.tapRegionGroupId,
  child: MyWidget(),
)

Implementation

static Object get tapRegionGroupId => _bubbleLabelTapRegionGroupId;