Check if string is not empty and contains non-whitespace characters
Example:
if (FSValidators.isNotEmpty('text')) // true
static bool isNotEmpty(String? value) { return !isEmpty(value); }