requestIosPermission method
Requests iOS permissions through the native implementation
Implementation
@override
Future<bool> requestIosPermission() async {
try {
final result = await methodChannel.invokeMethod('requestPermission');
return result;
} on PlatformException catch (e) {
debugPrint('Failed to get status: ${e.message}');
return false;
}
}