downloadWithURL method

Future<String?> downloadWithURL(
  1. Map<String, dynamic> map
)
override

下载文件

Implementation

Future<String?> downloadWithURL(Map<String, dynamic> map) async {
  final result = await methodChannel.invokeMethod("downloadWithURL");
  return result;
}