download static method
Implementation
static Response download(
String fileName,
Uint8List bytes, {
Map<String, String> headers = const {},
}) =>
Response(
data: {
"fileName": fileName,
"bytes": bytes,
},
responseType: ResponseType.download,
headers: headers,
);