notEmpty<T> function

bool notEmpty<T>(
  1. Iterable<T> x
)

Implementation

bool notEmpty<T>(Iterable<T> x) => notNull(x) && x.isNotEmpty;