isNullOrEmpty function

bool isNullOrEmpty(
  1. Iterable? it
)

Implementation

bool isNullOrEmpty(final Iterable<dynamic>? it) => it?.isEmpty ?? true;