isNotBlank property

bool get isNotBlank

Returns true if this is not empty and does not consist solely of whitespace characters as defined by String.trim.

Implementation

bool get isNotBlank => this.trim().isNotEmpty;