notifyReconnectionStarted method Null safety

void notifyReconnectionStarted()

Implementation

void notifyReconnectionStarted() {
  _connectionHandlers.values.forEach((element) {
    element.onReconnectionStarted();
  });
}