OpenConnectStatus constructor

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

Implementation

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