NetworkStatisticsEntryFile constructor

const NetworkStatisticsEntryFile({
  1. FileType? fileType,
  2. required NetworkType networkType,
  3. required int sentBytes,
  4. required int receivedBytes,
})

Contains information about the total amount of data that was used to send and receive files

Implementation

const NetworkStatisticsEntryFile({
  this.fileType,
  required this.networkType,
  required this.sentBytes,
  required this.receivedBytes,
});