listIsEmpty<T> function

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

Implementation

bool listIsEmpty<T>(Iterable<T> x) => isNull(x) || x.isEmpty;