isRelative property

bool isRelative

Gets if this instance holds a relative URL.

Implementation

bool get isRelative {
  return _uri == null && _endpoint != null && _endpoint!.isNotEmpty;
}