RoadAttributesListener constructor

RoadAttributesListener(
  1. void onRoadAttributesUpdatedLambda(
    1. RoadAttributes
    )
)

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

Implementation

factory RoadAttributesListener(
  void Function(RoadAttributes) onRoadAttributesUpdatedLambda,

) => RoadAttributesListener$Lambdas(
  onRoadAttributesUpdatedLambda,

);