invertMatch property

  1. @TagNumber.new(8)
bool get invertMatch

If specified, the match result will be inverted before checking. Default value is set to false.

Implementation

@$pb.TagNumber(8)
$core.bool get invertMatch => $_getBF(7);
  1. @TagNumber.new(8)
set invertMatch (bool v)

Implementation

@$pb.TagNumber(8)
set invertMatch($core.bool v) {
  $_setBool(7, v);
}