readBytes method
Liest URL-Inhalt als Bytes mit URL-Validierung
Implementation
@override
Future<Uint8List> readBytes(Uri url, {Map<String, String>? headers}) async {
_validateUrl(url);
return super.readBytes(url, headers: headers);
}
Liest URL-Inhalt als Bytes mit URL-Validierung
@override
Future<Uint8List> readBytes(Uri url, {Map<String, String>? headers}) async {
_validateUrl(url);
return super.readBytes(url, headers: headers);
}