NetworkStatisticsEntryCall constructor

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

Contains information about the total amount of data that was used for calls

Implementation

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