copyUrlToLocalStorage method
Implementation
@override
Future<void> copyUrlToLocalStorage(String url, String targetName) async {
final String targetPath = await _getLocalFilePath(targetName);
await methodChannel.invokeMethod('copyUrlToLocal', {
'url': url,
'targetPath': targetPath,
});
}