isNullOrEmpty method

bool isNullOrEmpty()

Implementation

bool isNullOrEmpty(){
  return this == null || this!.isEmpty;
}