isNullOrEmpty method

bool isNullOrEmpty()

Indicates if the Stirng is null or ""

Implementation

bool isNullOrEmpty() {
  return this == null || this == "";
}