Response constructor

Response(
  1. int statusCode,
  2. String body, {
  3. String? warning,
})

Creates a new Response object.

Implementation

Response(this.statusCode, this.body, {this.warning});