isEmpty function

bool isEmpty(
  1. Iterable? ittr
)

True if the provided ittr Iterable is null or Iterable.isEmpty

since 0.0.1

Implementation

bool isEmpty(final Iterable? ittr) => isFalse(isNotEmpty(ittr));