ResponseBean constructor

ResponseBean({
  1. int? id,
  2. int? statusCode,
  3. String? url,
  4. String? method,
  5. String? statusMessage,
  6. DateTime? responseTime,
  7. int? duration,
  8. dynamic data,
  9. Map<String, dynamic>? headers,
})

Implementation

ResponseBean({
  this.id,
  this.statusCode,
  this.url,
  this.method,
  this.statusMessage,
  this.responseTime,
  this.duration,
  this.data,
  this.headers,
});