RouteProgressListener constructor

RouteProgressListener(
  1. void onRouteProgressUpdatedLambda(
    1. RouteProgress
    )
)

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

Implementation

factory RouteProgressListener(
  void Function(RouteProgress) onRouteProgressUpdatedLambda,

) => RouteProgressListener$Lambdas(
  onRouteProgressUpdatedLambda,

);