isEmpty<T> function

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

Implementation

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