PowerMapNavigator constructor

PowerMapNavigator({
  1. required PowerMapController controller,
  2. VoidCallback? onVehicleTapped,
  3. void onRerouted(
    1. PowerMapRouteResult newRoute
    )?,
})

Implementation

PowerMapNavigator({
  required PowerMapController controller,
  this.onVehicleTapped,
  this.onRerouted,
}) : _controller = controller {
  _locationTracker = LocationTracker();
  _initTts();
}