isNotNullEmpty method
Check text is not null and empty
Implementation
bool isNotNullEmpty() {
if (this != null && this!.trim().isNotEmpty) {
return true;
}
return false;
}
Check text is not null and empty
bool isNotNullEmpty() {
if (this != null && this!.trim().isNotEmpty) {
return true;
}
return false;
}