EventTextListener constructor

EventTextListener(
  1. void onEventTextUpdatedLambda(
    1. EventText
    )
)

This abstract class should be implemented in order to receive notifications when text notifications are available from Navigator.

Multiple notifications can be given for the same maneuver at different distances.

Implementation

factory EventTextListener(
  void Function(EventText) onEventTextUpdatedLambda,

) => EventTextListener$Lambdas(
  onEventTextUpdatedLambda,

);