haveContent method
// DO THIS:
return this != null && this!.isNotEmpty;
Implementation
bool haveContent() {
return this != null && this!.isNotEmpty;
}
// DO THIS:
return this != null && this!.isNotEmpty;
bool haveContent() {
return this != null && this!.isNotEmpty;
}