FileDownloadedPrefixSize constructor

const FileDownloadedPrefixSize({
  1. required int size,
  2. dynamic extra,
  3. int? clientId,
})

Contains size of downloaded prefix of a file

Implementation

const FileDownloadedPrefixSize({
  required this.size,
  this.extra,
  this.clientId,
});