resolvedActions method

List<EngageAction> resolvedActions(
  1. VariableScope scope
)

Implementation

List<EngageAction> resolvedActions(VariableScope scope) {
  // TODO(action-custom-kv): The shared parser/runner currently ignores
  // Action.customKV. This path starts executing it automatically when the
  // custom-KV action branch adds its parser and handler.
  return const EngageActionParser().parse(resolvedOnClick(scope));
}