HttpPayload.bytes constructor

HttpPayload.bytes(
  1. List<int> body, {
  2. String? contentType,
})

A byte buffer HTTP body.

Implementation

HttpPayload.bytes(
  List<int> body, {
  this.contentType,
}) : super(Stream.value(body));