requestPermission method
Implementation
@override
Future<void> requestPermission({required bool onlyOpenPrefPane}) async{
if (!kIsWeb && Platform.isMacOS) {
final Map<String, dynamic> arguments = {
'onlyOpenPrefPane': onlyOpenPrefPane,
};
await methodChannel.invokeMethod('requestPermission', arguments);
}
}