AppsFlyerOptions constructor

AppsFlyerOptions({
  1. required String afDevKey,
  2. bool showDebug = false,
  3. String appId = "",
  4. double? timeToWaitForATTUserAuthorization,
  5. String? appInviteOneLink,
  6. bool? disableAdvertisingIdentifier,
  7. bool? disableCollectASA,
  8. bool? manualStart = false,
})

Creates an AppsFlyerOptions instance. Requires afDevKey and appId as mandatory Named parameters. All other parameters are optional, it's allows greater flexibility when invoking the constructor. When manual start is true the startSDK must be called

Implementation

AppsFlyerOptions({
  required this.afDevKey,
  this.showDebug = false,
  this.appId = "",
  this.timeToWaitForATTUserAuthorization,
  this.appInviteOneLink,
  this.disableAdvertisingIdentifier,
  this.disableCollectASA,
  this.manualStart = false,
});