isNotBlank property
bool
get
isNotBlank
Returns true if this string is a not blank by any chance.
Example: ' a '.isNotBlank -> true.
Implementation
bool get isNotBlank => trim().isNotEmpty;
Returns true if this string is a not blank by any chance.
Example: ' a '.isNotBlank -> true.
bool get isNotBlank => trim().isNotEmpty;