isNotNullOrEmpty static method

bool isNotNullOrEmpty(
  1. Iterable? iterable
)

Checks if the given Iterable iterable is not null or empty

Implementation

static bool isNotNullOrEmpty(Iterable? iterable) => !isNullOrEmpty(iterable);