bottomRightCorner property

RenderBox? bottomRightCorner

Implementation

RenderBox? get bottomRightCorner => _bottomRightCorner;
void bottomRightCorner=(RenderBox? value)

Implementation

set bottomRightCorner(RenderBox? value) {
  if (value == _bottomRightCorner) return;
  if (_bottomRightCorner != null) dropChild(_bottomRightCorner!);
  _bottomRightCorner = value;
  if (_bottomRightCorner != null) adoptChild(_bottomRightCorner!);
}