markNeedsLayout method

void markNeedsLayout()

Implementation

void markNeedsLayout() {
  _needsLayout = true;
  _needsPaint = true;
  if (!_relayoutBoundary && _parent != null) {
    _parent!.markNeedsLayout();
  }
}