FFTriggerAppEventAction constructor

FFTriggerAppEventAction({
  1. FFIdentifier? appEventIdentifier,
  2. FFValue? appEventData,
  3. FFValue? waitForCompletion,
  4. 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;
}