secondChild property
RenderBox?
get
secondChild
Implementation
RenderBox? get secondChild => _secondChild;
set
secondChild
(RenderBox? value)
Implementation
set secondChild(RenderBox? value) {
if (_secondChild != null) {
dropChild(_secondChild!);
}
_secondChild = value;
if (_secondChild != null) {
adoptChild(_secondChild!);
}
}