isBlank property
bool
get
isBlank
Returns true
if this
is empty or consists solely of whitespace
characters as defined by String.trim.
Implementation
bool get isBlank => this.trim().isEmpty;
Returns true
if this
is empty or consists solely of whitespace
characters as defined by String.trim.
bool get isBlank => this.trim().isEmpty;