body property

Stream<Uint8List>? body

A ReadableStream of the body contents.

MDN Reference

Implementation

Stream<Uint8List>? get body {
  throwIfBodyUsed();

  _storage[#bodyUsed] = true;

  return _storage.of(#body, () => null);
}