startDownload method

Future<String?> startDownload(
  1. String url
)

Starts downloading a video from the given url. Returns a unique identifier for the download task.

Implementation

Future<String?> startDownload(String url) {
  throw UnimplementedError('startDownload() has not been implemented.');
}