HttpResponse constructor

const HttpResponse({
  1. dynamic data,
  2. Map<String, dynamic>? headers,
  3. int? statusCode,
  4. String? statusMessage,
})

Implementation

const HttpResponse({
  this.data,
  this.headers,
  this.statusCode,
  this.statusMessage,
});