FetchResponse constructor

FetchResponse(
  1. String body,
  2. bool ok,
  3. int statusCode,
  4. String statusText,
  5. Uint8List arrayBuffer,
)

Implementation

FetchResponse(
  this.body,
  this.ok,
  this.statusCode,
  this.statusText,
  this.arrayBuffer,
);