isNullOrWhiteSpace method
Returns true if the string is null, empty, or contains only whitespace.
Implementation
bool isNullOrWhiteSpace() {
return trim().isEmpty;
}
Returns true if the string is null, empty, or contains only whitespace.
bool isNullOrWhiteSpace() {
return trim().isEmpty;
}