isEmptyOrNull property

bool get isEmptyOrNull

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

Implementation

bool get isEmptyOrNull => this == null || this!.isEmpty;