urlMatches property

String? get urlMatches

Matches if the URL (without 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 urlMatches => _wrapped.urlMatches;
set urlMatches (String? v)

Implementation

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