BoxyChild constructor

BoxyChild({
  1. required Object id,
  2. required InflatingRenderObjectMixin<RenderObject, InflatingParentData<RenderObject>, InflatedChildHandle> parent,
  3. RenderBox? render,
  4. Widget? widget,
  5. Element? context,
})

Constructs a child associated with a parent InflatingRenderObjectMixin, this should not be used directly, instead access one with BoxyDelegate.getChild.

Implementation

BoxyChild({
  required super.id,
  required super.parent,
  RenderBox? super.render,
  super.widget,
  super.context,
});