speedLimit property
Implementation
double? get speedLimit {
if (_currentRoute == null || _currentLocation == null) return null;
return _currentRoute!.getSpeedLimitAt(_currentLocation!);
}
double? get speedLimit {
if (_currentRoute == null || _currentLocation == null) return null;
return _currentRoute!.getSpeedLimitAt(_currentLocation!);
}