open method
Implementation
Future<bool> open(UDownloadTask task) async {
final String? path = await _plainLocation(task);
if (path == null) return false;
return UDownloadPlatform.open(path, mimeType: task.mimeType);
}
Future<bool> open(UDownloadTask task) async {
final String? path = await _plainLocation(task);
if (path == null) return false;
return UDownloadPlatform.open(path, mimeType: task.mimeType);
}