V2RayStatus constructor

const V2RayStatus({
  1. required String state,
  2. int bytesIn = 0,
  3. int bytesOut = 0,
  4. String? errorMessage,
})

Implementation

const V2RayStatus({
  required this.state,
  this.bytesIn = 0,
  this.bytesOut = 0,
  this.errorMessage,
});