Checks if the given String is not null or empty.
Example:
String? value = "Hello"; print(value.isNotEmptyOrNull); // true
bool get isNotEmptyOrNull => !isEmptyOrNull;