ManeuverViewLaneAssistanceListener constructor

ManeuverViewLaneAssistanceListener(
  1. void onLaneAssistanceUpdatedLambda(
    1. ManeuverViewLaneAssistance
    )
)

This abstract class should be implemented in order to receive notifications on ManeuverViewLaneAssistance.

See ManeuverViewLaneAssistance documentation for further details.

Implementation

factory ManeuverViewLaneAssistanceListener(
  void Function(ManeuverViewLaneAssistance) onLaneAssistanceUpdatedLambda,

) => ManeuverViewLaneAssistanceListener$Lambdas(
  onLaneAssistanceUpdatedLambda,

);