isNotEmpty function

bool isNotEmpty(
  1. Iterable? iterable
)

Implementation

bool isNotEmpty(Iterable? iterable) {
  return iterable != null && iterable.isNotEmpty;
}