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