body property

Stream<List<int>>? body

Implementation

Stream<List<int>>? get body {
  final body = getProperty<ReadableStream?>(_delegate, 'body');
  return body == null ? null : streamFromJSReadable(body);
}