topRightCorner property

RenderBox? topRightCorner

Implementation

RenderBox? get topRightCorner => _topRightCorner;
void topRightCorner=(RenderBox? value)

Implementation

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