isNotBlank static method

bool isNotBlank(
  1. String? value
)

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);
}