body property

Stream<Uint8List>? body

A Stream of the body content.

MDN reference

Implementation

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

  _storage[#bodyUsed] = true;
  return _storage.of(#body, () => null);
}