NetworkInfo constructor

NetworkInfo({
  1. String userID = '',
  2. NetworkQuality quality = NetworkQuality.excellent,
  3. int upLoss = 0,
  4. int downLoss = 0,
  5. int delay = 0,
})

Implementation

NetworkInfo({
  this.userID = '',
  this.quality = NetworkQuality.excellent,
  this.upLoss = 0,
  this.downLoss = 0,
  this.delay = 0,
});