httpResponseBytes function
Optional helper for adapters requiring raw payload access.
Implementation
Uint8List? httpResponseBytes(dynamic data) {
if (data is Uint8List) {
return data;
}
return null;
}
Optional helper for adapters requiring raw payload access.
Uint8List? httpResponseBytes(dynamic data) {
if (data is Uint8List) {
return data;
}
return null;
}