FileDownload constructor

FileDownload({
  1. String? extra,
  2. int? client_id,
  3. int32? file_id,
  4. Message? message,
  5. int32? add_date,
  6. int32? complete_date,
  7. Bool? is_paused,
})

Implementation

FileDownload({
  super.extra,
  super.client_id,
  this.file_id,
  this.message,
  this.add_date,
  this.complete_date,
  this.is_paused,
});