FFTriggerAppEventAction constructor
FFTriggerAppEventAction({
- FFIdentifier? appEventIdentifier,
- FFValue? appEventData,
- FFValue? waitForCompletion,
- FFValue? debugId,
Implementation
factory FFTriggerAppEventAction({
FFIdentifier? appEventIdentifier,
FFValue? appEventData,
FFValue? waitForCompletion,
FFValue? debugId,
}) {
final result = create();
if (appEventIdentifier != null)
result.appEventIdentifier = appEventIdentifier;
if (appEventData != null) result.appEventData = appEventData;
if (waitForCompletion != null) result.waitForCompletion = waitForCompletion;
if (debugId != null) result.debugId = debugId;
return result;
}