setCancelDownload method
Implementation
Future<void> setCancelDownload() async {
try {
await methodChannel.invokeMethod(Constant.METHOD_CANCEL_DOWNLOAD);
isDownloadStarted = false;
} on PlatformException catch (_) {}
}
Future<void> setCancelDownload() async {
try {
await methodChannel.invokeMethod(Constant.METHOD_CANCEL_DOWNLOAD);
isDownloadStarted = false;
} on PlatformException catch (_) {}
}