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