isParentOf method

bool isParentOf(
  1. Channel child
)

Check if this channel is a parent of another channel

Implementation

bool isParentOf(Channel child) {
  return child.isChildOf(this);
}