isNotEmptyOrNull property

bool get isNotEmptyOrNull

Checks if the given String is not null or empty.

Example:

String? value = "Hello";
print(value.isNotEmptyOrNull); // true

Implementation

bool get isNotEmptyOrNull => !isEmptyOrNull;