HttpConfig constructor

HttpConfig({
  1. bool? autoSync,
  2. int? autoSyncThreshold,
  3. bool? disableAutoSyncOnCellular,
  4. bool? batchSync,
  5. int? maxBatchSize,
  6. String? method,
  7. String? url,
  8. Map<String, dynamic>? params,
  9. Map<String, dynamic>? headers,
  10. String? rootProperty,
  11. int? timeout,
})

Implementation

HttpConfig({
  this.autoSync,
  this.autoSyncThreshold,
  this.disableAutoSyncOnCellular,
  this.batchSync,
  this.maxBatchSize,
  this.method,
  this.url,
  this.params,
  this.headers,
  this.rootProperty,
  this.timeout,
});