cancelTasksWithIds method

Future<bool> cancelTasksWithIds(
  1. List<String> taskIds
)

Cancel all tasks matching the taskIds in the list

Every canceled task wil emit a TaskStatus.canceled update to the registered callback, if requested

Implementation

Future<bool> cancelTasksWithIds(List<String> taskIds) =>
    _downloader.cancelTasksWithIds(taskIds);