HttpEvent constructor

const HttpEvent({
  1. required int status,
  2. required bool ok,
  3. String? responseText,
  4. JsonMap? response,
})

Implementation

const HttpEvent({
  required this.status,
  required this.ok,
  this.responseText,
  this.response,
});