isDeveloperModeEnabled method
Check if developer mode is enabled
Implementation
Future<bool> isDeveloperModeEnabled() async {
try {
return await _runInBackground(() async {
return await UltraSecureFlutterKitPlatform.instance
.isDeveloperModeEnabled();
});
} catch (e) {
print('Developer mode detection failed: $e');
return false;
}
}