NetworkUtilization constructor

NetworkUtilization({
  1. int? targetReceivedBytesPerSecond,
  2. int? targetReceivedPacketsPerSecond,
  3. int? targetSentBytesPerSecond,
  4. int? targetSentPacketsPerSecond,
})

Implementation

NetworkUtilization({
  this.targetReceivedBytesPerSecond,
  this.targetReceivedPacketsPerSecond,
  this.targetSentBytesPerSecond,
  this.targetSentPacketsPerSecond,
});