HttpResponse constructor

HttpResponse({
  1. bool success = false,
  2. dynamic data,
  3. Map<String, List<String>>? headers,
  4. int statusCode = 0,
  5. required Uri realUri,
})

Implementation

HttpResponse({
  this.success = false,
  this.data,
  this.headers,
  this.statusCode = 0,
  required this.realUri,
});