PingService constructor

PingService({
  1. String urlTarget = 'https://www.google.com/',
  2. Duration timeout = const Duration(seconds: 3),
})

Implementation

PingService({
  this.urlTarget = 'https://www.google.com/',
  this.timeout = const Duration(seconds: 3),
}) {
  _restartStream();
}