removeDownload method
Implementation
@override
Future<int> removeDownload(String gid, {bool force = false}) async {
final result = await _invokeRequired<int>('removeDownload', {
'gid': gid,
'force': force,
});
return result;
}
@override
Future<int> removeDownload(String gid, {bool force = false}) async {
final result = await _invokeRequired<int>('removeDownload', {
'gid': gid,
'force': force,
});
return result;
}