V2RayStatus constructor

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

Implementation

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