HttpRequestSetting constructor

HttpRequestSetting({
  1. String baseUrl = "",
  2. int sendTimeOut = 20,
  3. int connectTimeOut = 60,
  4. int receiveTimeOut = 20,
  5. String contentType = "application/json",
  6. List<Interceptor>? interceptors,
})

Implementation

HttpRequestSetting({
  this.baseUrl = "",
  this.sendTimeOut = 20,
  this.connectTimeOut = 60,
  this.receiveTimeOut = 20,
  this.contentType = "application/json",
  this.interceptors,
});