taskCanResume method

Future<bool> taskCanResume(
  1. Task task
)

Returns true if task can be resumed on pause

This future only completes once the task is running and has received information from the server to determine whether resume is possible, or if the task fails and resume is possible

Implementation

Future<bool> taskCanResume(Task task) => _downloader.taskCanResume(task);