isEmptyOrNull property

bool isEmptyOrNull

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

Implementation

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