child property
The render object's unique child.
Implementation
@override
RenderParagraph? get child => super.child as RenderParagraph?;
Implementation
set child(ChildType? value) {
if (_child != null) {
dropChild(_child!);
}
_child = value;
if (_child != null) {
adoptChild(_child!);
}
}