HttpResponse constructor

const HttpResponse(
  1. int? statusCode,
  2. Map<String, dynamic>? body
)

Constructs an HttpResponse instance with the provided status code and body.

Implementation

const HttpResponse(this.statusCode, this.body);