isHasMoreContent method

bool? isHasMoreContent()

Implementation

bool? isHasMoreContent() => this is HasContent
    ? (this as HasContent).isHasMoreContent
    : null;