Response constructor

Response(
  1. int statusCode, {
  2. String? body,
  3. bool persistent = false,
})

General constructor, sets the status code and body.

Implementation

Response(this.statusCode, {this.body, this.persistent = false});