NetworkStatisticsEntryFile constructor

NetworkStatisticsEntryFile({
  1. String? extra,
  2. int? client_id,
  3. FileType? file_type,
  4. NetworkType? network_type,
  5. int53? sent_bytes,
  6. int53? received_bytes,
})

Implementation

NetworkStatisticsEntryFile({
  super.extra,
  super.client_id,
  this.file_type,
  this.network_type,
  this.sent_bytes,
  this.received_bytes,
});