start method

dynamic start()

Implementation

start() async {
  try {
    await _hubConnection.start();
  } catch (e) {
    debugPrint("Connecting...\n$e");
    await Future.delayed(Duration(milliseconds: 5000));
    start();
  }
}