regexMatch property

  1. @TagNumber.new(3)
String get regexMatch

The value of the header must match the regular expression specified in regex_match. For regular expression grammar, please see: https://github.com/google/re2/wiki/Syntax

Implementation

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

Implementation

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