getNotificationsPath method
Implementation
@override
Future<String?> getNotificationsPath() async {
try {
if (!Platform.isAndroid) throw _unsupportedPlatformException();
return await methodChannel.invokeMethod<String>('getNotificationsPath');
} on PlatformException catch (e) {
debugPrint('Error getting notifications path: ${e.message}');
return null;
}
}