DeviceIntegrityResult constructor

DeviceIntegrityResult({
  1. bool isDeveloperModeEnabled = false,
  2. bool isRooted = false,
  3. bool isEmulator = false,
  4. bool hasPotentiallyDangerousApps = false,
  5. bool isJailbroken = false,
  6. bool isRealDevice = true,
  7. String? playIntegrityToken,
  8. String? playIntegrityError,
})

Creates a DeviceIntegrityResult instance.

Implementation

DeviceIntegrityResult({
  this.isDeveloperModeEnabled = false,
  this.isRooted = false,
  this.isEmulator = false,
  this.hasPotentiallyDangerousApps = false,
  this.isJailbroken = false,
  this.isRealDevice = true,
  this.playIntegrityToken,
  this.playIntegrityError,
});