originAndPathMatches property

String? get originAndPathMatches

Matches if the URL without query segment and fragment identifier matches a specified regular expression. Port numbers are stripped from the URL if they match the default port number. The regular expressions use the RE2 syntax.

Implementation

String? get originAndPathMatches => _wrapped.originAndPathMatches;
set originAndPathMatches (String? v)

Implementation

set originAndPathMatches(String? v) {
  _wrapped.originAndPathMatches = v;
}