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;