AutoDownloadSettings constructor

AutoDownloadSettings({
  1. String? extra,
  2. int? client_id,
  3. Bool? is_auto_download_enabled,
  4. int32? max_photo_file_size,
  5. int53? max_video_file_size,
  6. int53? max_other_file_size,
  7. int32? video_upload_bitrate,
  8. Bool? preload_large_videos,
  9. Bool? preload_next_audio,
  10. Bool? use_less_data_for_calls,
})

Implementation

AutoDownloadSettings({
  super.extra,
  super.client_id,
  this.is_auto_download_enabled,
  this.max_photo_file_size,
  this.max_video_file_size,
  this.max_other_file_size,
  this.video_upload_bitrate,
  this.preload_large_videos,
  this.preload_next_audio,
  this.use_less_data_for_calls,
});