isNotEmpty function

bool isNotEmpty(
  1. Iterable? it
)

Implementation

bool isNotEmpty(final Iterable<dynamic>? it) => it?.isNotEmpty ?? false;