SpeedLimitListener constructor

SpeedLimitListener(
  1. void onSpeedLimitUpdatedLambda(
    1. SpeedLimit
    )
)

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

Implementation

factory SpeedLimitListener(
  void Function(SpeedLimit) onSpeedLimitUpdatedLambda,

) => SpeedLimitListener$Lambdas(
  onSpeedLimitUpdatedLambda,

);