I want to track app installs, but currently, I am not receiving any install information on iOS. I found the this for a solution
in revenueCat document: https://www.revenuecat.com/docs/integrations/attribution/facebook-ads#track-install-and-usage-events
Track Install and Usage Events
As noted above, you'll need to disable all client side tracking of revenue to prevent double counting of revenue in Facebook Ads Manager. To continue tracking install and usage events, you'll need to call Facebook's 'activate app' event after configuration:
-Swift
// disable automatic tracking
FBSDKCoreKit.Settings.shared.isAutoLogAppEventsEnabled = false
// optional: call activateApp
FBSDKCoreKit.AppEvents.shared.activateApp()
What is the equivalent of this code in flutter?