setDestination method

void setDestination(
  1. RaliPosition destination
)

//////////// //////////// Sets the destination point for navigation

Implementation

// II.D - Destination and Route Management
///////////////
/// Sets the destination point for navigation
void setDestination(RaliPosition destination) {
  _destination = destination;
  notifyListeners();
}