children property

List<ChildHandleType> children

A list of each BoxyChild handle associated with the boxy, the list itself should not be modified by the delegate.

Implementation

List<ChildHandleType> get children {
  var out = render.childHandles;
  assert(() {
    out = UnmodifiableListView(out);
    return true;
  }());
  return out;
}