followPath method
- List<
AutonomyAStarState> path
Implementation
Future<void> followPath(List<AutonomyAStarState> path) async {
for (final state in path) {
await goDirection(state.direction);
}
}
Future<void> followPath(List<AutonomyAStarState> path) async {
for (final state in path) {
await goDirection(state.direction);
}
}