download method

Future download(
  1. BuildContext context,
  2. String url, {
  3. Map<String, String>? header,
  4. bool responseData = true,
})

Implementation

Future download(BuildContext context, String url,
    {Map<String, String>? header, bool responseData = true}) {
  return _send(context, 'download', url, header!, responseData: responseData);
}