NetworkStatisticsEntryCall constructor

NetworkStatisticsEntryCall({
  1. NetworkType? networkType,
  2. required int sentBytes,
  3. required int receivedBytes,
  4. required double duration,
})

Implementation

NetworkStatisticsEntryCall({
  this.networkType,
  required this.sentBytes,
  required this.receivedBytes,
  required this.duration,
});