isAbsolute property
bool
get
isAbsolute
Returns true if this URI is an absolute URL (has scheme + host).
Implementation
bool get isAbsolute => hasScheme && host.isNotEmpty;
Returns true if this URI is an absolute URL (has scheme + host).
bool get isAbsolute => hasScheme && host.isNotEmpty;