loadData method
Implementation
@override
Future<Uint8List> loadData() async {
try {
final response = await http.get(Uri.parse(url), headers: headers);
if (response.statusCode == 200) {
return response.bodyBytes;
} else {
throw Exception('Failed to download file from URL');
}
} catch (e) {
throw Exception('Failed to download file from URL, $e');
}
}