configureReconnection method
Configures automatic reconnection behavior.
Example:
manager.configureReconnection(ReconnectionConfig(
maxAttempts: 10,
initialDelay: Duration(seconds: 2),
maxDelay: Duration(minutes: 1),
));
Implementation
void configureReconnection(ReconnectionConfig config) {
_reconnectionConfig = config;
}