isNullOrEmpty method
Implementation
bool isNullOrEmpty() {
final self = this;
if (self == null) {
return true;
} else {
return self.isEmpty;
}
}
bool isNullOrEmpty() {
final self = this;
if (self == null) {
return true;
} else {
return self.isEmpty;
}
}