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;