httpResponseBytes function

Uint8List? httpResponseBytes(
  1. dynamic data
)

Optional helper for adapters requiring raw payload access.

Implementation

Uint8List? httpResponseBytes(dynamic data) {
  if (data is Uint8List) {
    return data;
  }
  return null;
}