FFAddLocalAppEventHandlerAction constructor
FFAddLocalAppEventHandlerAction({
- FFIdentifier? appEventIdentifier,
- FFIdentifier? onLocalEventHandlerActionComponentIdentifier,
- bool? isGlobalActionComponent,
Implementation
factory FFAddLocalAppEventHandlerAction({
FFIdentifier? appEventIdentifier,
FFIdentifier? onLocalEventHandlerActionComponentIdentifier,
$core.bool? isGlobalActionComponent,
}) {
final result = create();
if (appEventIdentifier != null)
result.appEventIdentifier = appEventIdentifier;
if (onLocalEventHandlerActionComponentIdentifier != null)
result.onLocalEventHandlerActionComponentIdentifier =
onLocalEventHandlerActionComponentIdentifier;
if (isGlobalActionComponent != null)
result.isGlobalActionComponent = isGlobalActionComponent;
return result;
}