execute method

  1. @override
Future<RawEvent?> execute(
  1. RawEvent event
)
override

Implementation

@override
Future<RawEvent?> execute(RawEvent event) async {
  // Wait for the initial IDFA fetch to complete before allowing events through,
  // so that Application Installed / Application Opened are stamped with IDFA data.
  await _trackingStatusFuture;
  return event;
}