exactMatch property

  1. @TagNumber.new(2)
String get exactMatch

The value of the query parameter must exactly match the contents of exact_match.

Only one of exact_match, regex_match, or present_match must be set.

Implementation

@$pb.TagNumber(2)
$core.String get exactMatch => $_getSZ(1);
  1. @TagNumber.new(2)
set exactMatch (String v)

Implementation

@$pb.TagNumber(2)
set exactMatch($core.String v) {
  $_setString(1, v);
}