KeepAliveConfig constructor

const KeepAliveConfig({
  1. Duration interval = const Duration(seconds: 30),
  2. Duration timeout = const Duration(seconds: 10),
  3. bool enabled = true,
})

Implementation

const KeepAliveConfig({
  this.interval = const Duration(seconds: 30),
  this.timeout = const Duration(seconds: 10),
  this.enabled = true,
});