APIRequestInfo constructor

APIRequestInfo({
  1. HTTPRequestType requestType = HTTPRequestType.POST,
  2. Object? parameter,
  3. Map<String, String>? headers,
  4. List<UploadDocument> docList = const [],
  5. required String url,
  6. String serviceName = "",
  7. int timeSecond = 90,
})

Implementation

APIRequestInfo({
  this.requestType = HTTPRequestType.POST,
  this.parameter,
  this.headers,
  this.docList = const [],
  required this.url,
  this.serviceName = "",
  this.timeSecond = 90,
});