isNullOrWhitespace method
Indicates if the Stirng is null or " "
Implementation
bool isNullOrWhitespace() {
return this == null || this == ' ';
}
Indicates if the Stirng is null or " "
bool isNullOrWhitespace() {
return this == null || this == ' ';
}