getResultPath method
Implementation
@override
Future<String?> getResultPath({required String path}) async {
try {
final result = await methodChannel.invokeMethod('getResultPath', {
'path': path,
});
return result;
} on PlatformException {
rethrow;
}
}