isEmpty function

bool isEmpty(
  1. Iterable? iterable
)

Implementation

bool isEmpty(Iterable? iterable) {
  return iterable == null || iterable.isEmpty;
}