VlessStatus constructor

VlessStatus({
  1. int duration = 0,
  2. int uploadSpeed = 0,
  3. int downloadSpeed = 0,
  4. int upload = 0,
  5. int download = 0,
  6. String state = "DISCONNECTED",
})

Implementation

VlessStatus({
  this.duration = 0,
  this.uploadSpeed = 0,
  this.downloadSpeed = 0,
  this.upload = 0,
  this.download = 0,
  this.state = "DISCONNECTED",
});