executeWireframeEvent method
Implementation
void executeWireframeEvent(AFID widget, Object? eventData, {
AFPressedDelegate? onSuccess,
}) {
if(!AFibD.config.isPrototypeMode || AFibF.g.internalOnlyActiveStore.state.private.testState.activeWireframe == null) {
return;
}
dispatch(AFWireframeEventAction(
screen: accessScreenId,
widget: widget,
eventParam: eventData,
stateView: stateView,
onSuccess: onSuccess,
));
}