ignoreCase property

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

Specifies if prefix_match and full_path_match matches are case sensitive. The default value is false.

Implementation

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

Implementation

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