extIsEmptyOrNull method

bool extIsEmptyOrNull()

Implementation

bool extIsEmptyOrNull() {
  if (this == null) return true;
  if ((this ?? '').isEmpty) return true;
  return false;
}