RouteDeviationListener constructor

RouteDeviationListener(
  1. void onRouteDeviationLambda(
    1. RouteDeviation
    )
)

This abstract class should be implemented in order to receive notifications about route deviations from Navigator.

Implementation

factory RouteDeviationListener(
  void Function(RouteDeviation) onRouteDeviationLambda,

) => RouteDeviationListener$Lambdas(
  onRouteDeviationLambda,

);