isNotEmpty function Null safety

bool isNotEmpty(
  1. 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;