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