emitEvent abstract method

Future<void> emitEvent(
  1. String name,
  2. InteractionInput data
)

Informs all subscribers of an Event with the given name that it has occured.

You can provide (optional) input data that is emitted with the event.

Implementation

Future<void> emitEvent(String name, InteractionInput data);