NetworkStatistics constructor

const NetworkStatistics({
  1. required int sinceDate,
  2. required List<NetworkStatisticsEntry> entries,
  3. dynamic extra,
  4. int? clientId,
})

A full list of available network statistic entries

Implementation

const NetworkStatistics({
  required this.sinceDate,
  required this.entries,
  this.extra,
  this.clientId,
});