isNotEmpty function

bool isNotEmpty(
  1. Map? it
)

Implementation

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