FFAddLocalAppEventHandlerAction constructor

FFAddLocalAppEventHandlerAction({
  1. FFIdentifier? appEventIdentifier,
  2. FFIdentifier? onLocalEventHandlerActionComponentIdentifier,
  3. 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;
}