PingRequire constructor

PingRequire({
  1. String namePing = 'ping',
  2. required String host,
  3. int port = 443,
  4. bool interval = true,
  5. PingCallBack? okConexion,
  6. PingCallBack? errorConexion,
  7. bool forcePing = true,
})

Implementation

PingRequire({
  this.namePing = 'ping',
  required this.host,
  this.port = 443,
  this.interval = true,
  this.okConexion,
  this.errorConexion,
  this.forcePing = true,
});