SecurityResult constructor

SecurityResult({
  1. bool isRooted = false,
  2. bool isJailbroken = false,
  3. bool isOnEmulator = false,
  4. bool isDebugged = false,
  5. bool isTampered = false,
  6. bool isHooked = false,
})

Implementation

SecurityResult({
  this.isRooted = false,
  this.isJailbroken = false,
  this.isOnEmulator = false,
  this.isDebugged = false,
  this.isTampered = false,
  this.isHooked = false,
});