IosDeviceIdentifier constructor

const IosDeviceIdentifier({
  1. required String iosDeviceID,
  2. String? idfv,
  3. String? idfa,
  4. String? keychainUUID,
  5. String? deviceFingerprint,
  6. required String launchUUID,
  7. String? combinedId,
  8. bool isLimitAdTrackingEnabled = false,
  9. required Map<String, String> deviceInfo,
})

Implementation

const IosDeviceIdentifier({
  required this.iosDeviceID,
  this.idfv,
  this.idfa,
  this.keychainUUID,
  this.deviceFingerprint,
  required this.launchUUID,
  this.combinedId,
  this.isLimitAdTrackingEnabled = false,
  required this.deviceInfo,
});