SocketOptions constructor

SocketOptions({
  1. bool autoConnect = true,
  2. int reconnectionAttempts = 5,
  3. int? reconnectionDelay,
  4. int? reconnectionDelayMax,
})

Implementation

SocketOptions(
    {this.autoConnect = true,
    this.reconnectionAttempts = 5,
    this.reconnectionDelay,
    this.reconnectionDelayMax});