enableVehicleCounting property

  1. @TagNumber.new(2)
bool get enableVehicleCounting

Whether to count the appearances of vehicles, output counts will have 'vehicle' as the key.

Implementation

@$pb.TagNumber(2)
$core.bool get enableVehicleCounting => $_getBF(1);
  1. @TagNumber.new(2)
set enableVehicleCounting (bool v)

Implementation

@$pb.TagNumber(2)
set enableVehicleCounting($core.bool v) {
  $_setBool(1, v);
}