isEmptyOrNull property

bool isEmptyOrNull

Returns true if this nullable iterable is either null or empty.

Implementation

bool get isEmptyOrNull => (this?.isEmpty ?? true);