unblockAndroidApps method
Android-specific implementation for unblocking apps
Implementation
@override
Future<void> unblockAndroidApps() async {
try {
await methodChannel.invokeMethod('unblockApp');
} on PlatformException catch (e) {
debugPrint('Failed to unblock Android app: ${e.message}');
}
}