UploadingConfig constructor

UploadingConfig({
  1. bool? shouldUseWifiOnly = false,
  2. int? syncInterval = defaultSyncInterval,
  3. bool? shouldTurnOffUploader = false,
  4. int? lostConnectionAction = UPLOADING_ERROR_ACTION_ERROR_NOTIFICATION,
})

Implementation

UploadingConfig({
  this.shouldUseWifiOnly = false,
  this.syncInterval = defaultSyncInterval,
  this.shouldTurnOffUploader = false,
  this.lostConnectionAction = UPLOADING_ERROR_ACTION_ERROR_NOTIFICATION
});