ServerKeepAliveOptions constructor

const ServerKeepAliveOptions({
  1. Duration minIntervalBetweenPingsWithoutData = const Duration(minutes: 5),
  2. int? maxBadPings = 2,
})

Implementation

const ServerKeepAliveOptions({
  this.minIntervalBetweenPingsWithoutData = const Duration(minutes: 5),
  this.maxBadPings = 2,
});