isNotBlank static method
true if the value is not null and not Blank.
A string containing only whitespace is considered blank.
See: isNotEmpty to check for non-zero length string.
Implementation
static bool isNotBlank(String? value) {
return !isBlank(value);
}