downloadBytes method
Implementation
Future<Uint8List> downloadBytes(String url) {
return dio
.get(
url,
options: Options(
responseType: ResponseType.bytes,
),
)
.then(
(response) => response.data,
);
}