Checks if a string is not blank.
Example:
Helpers.isNotBlank('text'); // true
static bool isNotBlank(String? value) => !isBlank(value);