SocketConnectionOptions constructor
SocketConnectionOptions({
- String? path,
- List<
String> ? transports, - bool? reconnection,
- int? reconnectionAttempts,
- int? reconnectionDelay,
- int? reconnectionDelayMax,
- double? randomizationFactor,
- int? timeout,
- String? query,
- Map<
String, String> ? auth, - bool? secure,
- bool? forceNew,
- ExtraIOSSocketOptions? extraIOSConfig,
- ExtraAndroidSocketOptions? androidConfig,
Implementation
SocketConnectionOptions({
// Common
this.path,
this.transports,
this.reconnection,
this.reconnectionAttempts,
this.reconnectionDelay,
this.reconnectionDelayMax,
this.randomizationFactor,
this.timeout,
this.query,
this.auth,
this.secure,
this.forceNew,
// Platform-specific
this.extraIOSConfig,
this.androidConfig,
});