APIRequestInfo constructor

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

Implementation

APIRequestInfo({
  this.requestType = HTTPRequestMethod.get,
  this.parameter,
  this.headers,
  this.files = const [],
  required this.url,
  this.serviceName = "",
  this.timeSecond = 90,
});