isNotEmpty static method

bool isNotEmpty(
  1. String? value
)

Check if string is not empty and contains non-whitespace characters

Example:

if (FSValidators.isNotEmpty('text')) // true

Implementation

static bool isNotEmpty(String? value) {
  return !isEmpty(value);
}