isNotEmpty function Null safety
- Iterable? ittr
True if the provided ittr
Iterable is not null and is Iterable.isNotEmpty
since 0.0.1
Implementation
bool isNotEmpty(final Iterable? ittr) => isNotNull(ittr) && ittr!.isNotEmpty;
True if the provided ittr
Iterable is not null and is Iterable.isNotEmpty
since 0.0.1
bool isNotEmpty(final Iterable? ittr) => isNotNull(ittr) && ittr!.isNotEmpty;