haveContent method

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

Implementation

bool haveContent() {
  return this != null && this!.isNotEmpty;
}