DeviceIdentifier constructor

const DeviceIdentifier({
  1. String? androidId,
  2. String? advertisingId,
  3. String? installUuid,
  4. String? deviceFingerprint,
  5. String? buildSerial,
  6. String? combinedId,
  7. bool isLimitAdTrackingEnabled = false,
  8. String? iosDeviceID,
  9. String? idfv,
  10. String? idfa,
  11. String? keychainUUID,
  12. String? launchUUID,
  13. Map<String, String>? deviceInfo,
})

Implementation

const DeviceIdentifier({
  // Android 字段
  this.androidId,
  this.advertisingId,
  this.installUuid,
  this.deviceFingerprint,
  this.buildSerial,
  this.combinedId,
  this.isLimitAdTrackingEnabled = false,
  // iOS 字段
  this.iosDeviceID,
  this.idfv,
  this.idfa,
  this.keychainUUID,
  this.launchUUID,
  this.deviceInfo,
});