urlSuffix property

String? get urlSuffix

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

Implementation

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

Implementation

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