DestinationReachedListener constructor

DestinationReachedListener(
  1. void onDestinationReachedLambda()
)

This abstract class should be implemented in order to receive notifications from this class about the arrival at the destination.

Implementation

factory DestinationReachedListener(
  void Function() onDestinationReachedLambda,

) => DestinationReachedListener$Lambdas(
  onDestinationReachedLambda,

);