isNullOrWhitespace method

bool isNullOrWhitespace()

Indicates if the Stirng is null or " "

Implementation

bool isNullOrWhitespace() {
  return this == null || this == ' ';
}