RequestModel constructor

RequestModel(
  1. String url,
  2. String pathWithQuery,
  3. String briefUrl,
  4. String method,
  5. int statusCode,
  6. Map<String, dynamic> headers,
  7. dynamic data,
  8. FormDataModel? fromData,
  9. ResponseModel? response,
  10. dynamic rawRequest,
  11. int timestamp,
)

Implementation

RequestModel(this.url, this.pathWithQuery, this.briefUrl, this.method, this.statusCode, this.headers, this.data, this.fromData, this.response, this.rawRequest, this.timestamp);