isEmpty function

bool isEmpty(
  1. dynamic ittr
)

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

since 0.0.1

Implementation

bool isEmpty(final dynamic ittr) => isFalse(isNotEmpty(ittr));