isNotBlank method

bool isNotBlank()

true if the String is not Blank. A string that is zero length or only contains whitespace is considered blank.

Implementation

bool isNotBlank() => Blank.isNotBlank(this);