CallStatistics constructor

CallStatistics({
  1. required double maxRating,
  2. required double minRating,
  3. required double averageRating,
  4. required double currentRating,
  5. required int sentPackets,
  6. required int receivedPackets,
  7. required int lostPackets,
})

Constructor

Implementation

CallStatistics({
  required this.maxRating,
  required this.minRating,
  required this.averageRating,
  required this.currentRating,
  required this.sentPackets,
  required this.receivedPackets,
  required this.lostPackets,
 });