Stats constructor

Stats({
  1. required int bytesTx,
  2. required int bytesRx,
  3. required int throughputTx,
  4. required int throughputRx,
})

Implementation

Stats({
  required this.bytesTx,
  required this.bytesRx,
  required this.throughputTx,
  required this.throughputRx,
});