isNotUriNullOrEmpty property

bool get isNotUriNullOrEmpty

Returns true if this URI is not null and has a non-empty path.

Implementation

bool get isNotUriNullOrEmpty => this?.path.isNotEmpty ?? false;