arrayBuffer method

Future<ArrayBuffer> arrayBuffer()

Returns a promise that resolves with an ArrayBuffer representation of the response body.

MDN Reference

Implementation

Future<ArrayBuffer> arrayBuffer() =>
    blob().then((blob) => blob.arrayBuffer());