ModemNetworkBearersStats constructor

ModemNetworkBearersStats({
  1. num? duration,
  2. num? rxBytes,
  3. num? txBytes,
  4. num? attempts,
  5. num? failedAttempts,
  6. num? totalDuration,
  7. num? totalRxBytes,
  8. num? totalTxBytes,
})

Returns a new ModemNetworkBearersStats instance.

Implementation

ModemNetworkBearersStats({
  this.duration,
  this.rxBytes,
  this.txBytes,
  this.attempts,
  this.failedAttempts,
  this.totalDuration,
  this.totalRxBytes,
  this.totalTxBytes,
});