isNotNullOrEmpty property

bool get isNotNullOrEmpty

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

Implementation

bool get isNotNullOrEmpty => this != null && this!.isNotEmpty;