caseSensitive property

  1. @TagNumber.new(4)
bool get caseSensitive

Optional. Specifies that matches are case sensitive. The default value is true. case_sensitive must not be used with a type of REGULAR_EXPRESSION.

Implementation

@$pb.TagNumber(4)
$core.bool get caseSensitive => $_getBF(3);
  1. @TagNumber.new(4)
set caseSensitive (bool v)

Implementation

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