execute method
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;
}