SSHKeepAlive constructor

SSHKeepAlive({
  1. required Future ping(),
  2. Duration interval = const Duration(seconds: 10),
})

Implementation

SSHKeepAlive({
  required this.ping,
  this.interval = const Duration(seconds: 10),
});