urlEquals property

String? get urlEquals

Matches if the URL (without fragment identifier) is equal to a specified string. Port numbers are stripped from the URL if they match the default port number.

Implementation

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

Implementation

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