ipodToPath method
Implementation
@override
Future<String> ipodToPath(String ipodLibraryUri, bool rewrite) async {
String? path = await methodChannel.invokeMethod<String>('ipodToPath', {
'ipodLibraryUri': ipodLibraryUri,
'rewrite': rewrite,
});
return path ?? '';
}