hostSuffix property

String? get hostSuffix

Matches if the host name of the URL ends with a specified string.

Implementation

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

Implementation

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