isNotBlank static method
Returns true if the string
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? string) => Blank.isNotBlank(string);