Heartbeat constructor

Heartbeat(
  1. String message,
  2. WriteLineFunction writeln, {
  3. Duration checkInterval = const Duration(seconds: 3, milliseconds: 100),
})

Implementation

Heartbeat(this.message, this.writeln,
    {this.checkInterval = const Duration(seconds: 3, milliseconds: 100)});