VpnStatus constructor

VpnStatus({
  1. String? duration,
  2. DateTime? connectedOn,
  3. String? byteIn,
  4. String? byteOut,
  5. String? packetsIn,
  6. String? packetsOut,
})

Implementation

VpnStatus({
  this.duration,
  this.connectedOn,
  this.byteIn,
  this.byteOut,
  this.packetsIn,
  this.packetsOut,
});