NetworkSpeedSample constructor

const NetworkSpeedSample({
  1. required int timestampMillis,
  2. required int rxBytesPerSecond,
  3. required int txBytesPerSecond,
  4. required double rxKbps,
  5. required double txKbps,
  6. required int totalRxBytes,
  7. required int totalTxBytes,
  8. required bool isSupported,
})

Creates a network speed sample.

Implementation

const NetworkSpeedSample({
  required this.timestampMillis,
  required this.rxBytesPerSecond,
  required this.txBytesPerSecond,
  required this.rxKbps,
  required this.txKbps,
  required this.totalRxBytes,
  required this.totalTxBytes,
  required this.isSupported,
});