TappableBehavior<Parent extends EntityMixin> constructor

TappableBehavior<Parent extends EntityMixin>({
  1. Iterable<Component>? children,
  2. int? priority,
  3. ComponentKey? key,
})

A behavior that makes an Entity tappable.

Implementation

TappableBehavior({
  super.children,
  super.priority,
  super.key,
});