start method

dynamic start()

Implementation

start() async {
  if (_state == _State.waiting) {
    _state = _State.running;
    _pendingFeatures.addAll(dataSource.features);
    _nextPath();
  }
}