isEmptyString property
bool
get
isEmptyString
Implementation
bool get isEmptyString {
if (this?.isEmpty ?? true) {
return true;
} else if (this == "null") {
return true;
} else {
if (this!.trim().isEmpty) {
return true;
} else {
return false;
}
}
}