NetworkStatisticsEntryFile constructor

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

Implementation

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