KeyriDetectionsConfig constructor
KeyriDetectionsConfig({})
Implementation
KeyriDetectionsConfig(
{bool? blockEmulatorDetection,
bool? blockRootDetection,
bool? blockDangerousAppsDetection,
bool? blockTamperDetection,
bool? blockSwizzleDetection}) {
this.blockEmulatorDetection = blockEmulatorDetection ?? true;
this.blockRootDetection = blockRootDetection ?? false;
this.blockDangerousAppsDetection = blockDangerousAppsDetection ?? false;
this.blockTamperDetection = blockTamperDetection ?? true;
this.blockSwizzleDetection = blockSwizzleDetection ?? false;
}