isNotEmpty property

Future<bool> get isNotEmpty

Checks if the collection is not empty.

Returns true if the collection contains documents, otherwise false.

Implementation

Future<bool> get isNotEmpty async => !(await isEmpty);