isUriNullOrEmpty property
bool
get
isUriNullOrEmpty
Returns true if this URI is null or has an empty path.
Implementation
bool get isUriNullOrEmpty => this?.path.isEmpty ?? true;
Returns true if this URI is null or has an empty path.
bool get isUriNullOrEmpty => this?.path.isEmpty ?? true;