checkContactsPermissionMac method
Check contacts permission status on macOS
Implementation
@override
Future<String> checkContactsPermissionMac() async {
try {
final result = await methodChannel.invokeMethod(
'checkContactsPermissionMac',
);
return result ?? 'denied';
} on PlatformException catch (e) {
debugPrint('Error checking macOS contacts permission: ${e.message}');
return 'denied';
}
}