NetworkStatisticsEntryCall constructor

NetworkStatisticsEntryCall({
  1. String? extra,
  2. int? client_id,
  3. NetworkType? network_type,
  4. int53? sent_bytes,
  5. int53? received_bytes,
  6. double? duration,
})

Implementation

NetworkStatisticsEntryCall({
  super.extra,
  super.client_id,
  this.network_type,
  this.sent_bytes,
  this.received_bytes,
  this.duration,
});