getResultPath method

  1. @override
Future<String?> getResultPath({
  1. required String path,
})
override

Implementation

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