CompleteRequestParams constructor

const CompleteRequestParams({
  1. required RequestOptions key,
  2. dynamic responseData,
  3. Map<String, List<String>>? responseHeader,
  4. int? requestContentLength,
  5. int? responseContentLength,
  6. int? httpCode,
})

Implementation

const CompleteRequestParams({
  required this.key,
  this.responseData,
  this.responseHeader,
  this.requestContentLength,
  this.responseContentLength,
  this.httpCode,
});