isEmptyList function

bool isEmptyList(
  1. Iterable? list
)

Implementation

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