exportApk method

Future<void> exportApk({
  1. required String packageName,
  2. required String savedPath,
})

Export one APK by package name

Implementation

Future<void> exportApk({
  required String packageName,
  required String savedPath,
}) async {
  await _channel.invokeMethod('$_name/exportApk', {
    "packageName": packageName,
    "savedPath": savedPath,
  });
}