RoadTextsListener constructor

RoadTextsListener(
  1. void onRoadTextsUpdatedLambda(
    1. RoadTexts
    )
)

This abstract class should be implemented in order to receive textual attributes of the current road.

Implementation

factory RoadTextsListener(
  void Function(RoadTexts) onRoadTextsUpdatedLambda,

) => RoadTextsListener$Lambdas(
  onRoadTextsUpdatedLambda,

);