strictMinEnabled property

  1. @TagNumber(3)
bool get strictMinEnabled

Optional. Whether each value needs to be strictly greater than ('>') the minimum, or if equality is allowed.

Only relevant if a min_value has been defined. Default = false.

Implementation

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

Implementation

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