isNotBlank property
bool
get
isNotBlank
Returns true if the string is not blank.
Example:
' '.isNotBlank; // false
'text'.isNotBlank; // true
Implementation
bool get isNotBlank => !isBlank;
Returns true if the string is not blank.
Example:
' '.isNotBlank; // false
'text'.isNotBlank; // true
bool get isNotBlank => !isBlank;