V2RayStatus constructor

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

Implementation

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