download method

Future<Online> download(
  1. AbstractDownloadable downloadable,
  2. AbstractPath path
)

Implementation

Future<Online> download(
    AbstractDownloadable downloadable, AbstractPath path) async {
  Show.action('downloading', downloadable.name);
  await downloadable.download(this, path);
  return this;
}