isNullOrEmpty method

bool isNullOrEmpty()

Implementation

bool isNullOrEmpty() {
  return (this == null || this?.length == 0);
}