waitForActionServerToStart method

Future<bool> waitForActionServerToStart (
  1. [int timeoutMs = 0]
)

Implementation

Future<bool> waitForActionServerToStart([int timeoutMs = 0]) async {
  if (isServerConnected) {
    return Future.value(true);
  } else {
    return _waitForActionServerToStart(timeoutMs, DateTime.now());
  }
}