ReqOptions constructor

ReqOptions({
  1. int? id,
  2. String? url,
  3. String? method,
  4. String? contentType,
  5. DateTime? requestTime,
  6. Map<String, dynamic>? headers,
  7. Map<String, dynamic>? params,
  8. dynamic data,
})

Implementation

ReqOptions({
  this.id,
  this.url,
  this.method,
  this.contentType,
  this.requestTime,
  this.headers,
  this.params,
  this.data,
});