Action<T> typedef

Action<T> = void Function(T? context, EngineCallback? callback)

Defines entry and exit actions (in and out of a state or container)

Implementation

typedef Action<T> = void Function(T? context, EngineCallback? callback);