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