isNotBlank static method

bool isNotBlank(
  1. String? value
)

Checks if a string is not blank

Example:

Helpers.isNotBlank('text'); // true

Implementation

static bool isNotBlank(String? value) {
  return !isBlank(value);
}