JailbreakAppException constructor

const JailbreakAppException({
  1. required String checkName,
  2. required String message,
  3. Object? originalError,
  4. StackTrace? originalStackTrace,
})

Creates a jailbreak exception for the given checkName and message.

Implementation

const JailbreakAppException({required this.checkName, required super.message, this.originalError, this.originalStackTrace});