contains method

bool contains(
  1. DockingArea area
)

Whether the DockingParentArea contains a child equal to area.

Implementation

bool contains(DockingArea area) {
  return _children.contains(area);
}