File constructor

File({
  1. String? extra,
  2. int? client_id,
  3. int32? id,
  4. int53? size,
  5. int53? expected_size,
  6. LocalFile? local,
  7. RemoteFile? remote,
})

Implementation

File({
  super.extra,
  super.client_id,
  this.id,
  this.size,
  this.expected_size,
  this.local,
  this.remote,
});