reconnect method

void reconnect()

Implementation

void reconnect() {
  debugPrint('[!]Reconnecting in ${reconnectIn.inSeconds} sec...');
  _reconnectionTimer = Timer(reconnectIn, connect);
}