NodeFlowActionIntent<T> constructor

const NodeFlowActionIntent<T>({
  1. required String actionId,
  2. BuildContext? context,
})

Creates an intent for a NodeFlow action.

Parameters:

  • actionId: The unique identifier of the action to execute
  • context: Optional build context that may be needed by the action

Implementation

const NodeFlowActionIntent({required this.actionId, this.context});