enableSecureFlag method
Enable secure flag
Implementation
Future<void> enableSecureFlag() async {
try {
await _runInBackground(() async {
return await UltraSecureFlutterKitPlatform.instance.enableSecureFlag();
});
} catch (e) {
debugPrint('Secure flag enablement failed: $e');
// Don't rethrow - this is not critical
}
}