isNotEmptyContent property

bool get isNotEmptyContent

Returns true if this node content is NOT empty (has children nodes). See isEmptyContent.

Implementation

bool get isNotEmptyContent {
  if (!allowContent) return false;
  return _content?.isNotEmpty ?? false;
}