isNotNullOrEmpty property
bool
get
isNotNullOrEmpty
Implementation
bool get isNotNullOrEmpty {
if (this == null) return false;
if (this == "") return false;
if (this == " ") return false;
if (this == " ") return false;
return true;
}