CallCacheModel constructor

CallCacheModel({
  1. String? data,
  2. String? path,
  3. String? uri,
  4. String? queryParameters,
  5. String? method,
  6. String? baseUrl,
  7. String? connectTimeout,
  8. String? contentType,
  9. String? extra,
  10. String? followRedirects,
  11. String? listFormat,
  12. String? receiveTimeout,
  13. String? responseType,
  14. String? headers,
  15. String? validateStatus,
  16. String? isCompleted,
  17. String? response,
  18. String? statusCode,
  19. String? eventMessage,
  20. String? startDate,
  21. String? endDate,
  22. String? totalSent,
  23. int? order,
  24. String? totalReceived,
})

Implementation

CallCacheModel(
    {this.data,
    this.path,
    this.uri,
    this.queryParameters,
    this.method,
    this.baseUrl,
    this.connectTimeout,
    this.contentType,
    this.extra,
    this.followRedirects,
    this.listFormat,
    this.receiveTimeout,
    this.responseType,
    this.headers,
    this.validateStatus,
    this.isCompleted,
    this.response,
    this.statusCode,
    this.eventMessage,
    this.startDate,
    this.endDate,
    this.totalSent,
    this.order,
    this.totalReceived});