resetSize method

void resetSize()

Reset the size of this LayoutComponent to either the layout dimensions or the intrinsicSize.

Implementation

void resetSize() {
  size.setValues(
    _layoutSizeX ?? intrinsicSize.x,
    _layoutSizeY ?? intrinsicSize.y,
  );
}