getAction method

NodeFlowAction<T>? getAction(
  1. String actionId
)

Finds an action by its ID.

Parameters:

  • actionId: The unique identifier of the action to find

Returns: The action if found, null otherwise

Implementation

NodeFlowAction<T>? getAction(String actionId) => _actions[actionId];