forceToRepaintBoundary property

set forceToRepaintBoundary (bool value)

Implementation

@pragma('vm:prefer-inline')
set forceToRepaintBoundary(bool value) {
  if (_forceToRepaintBoundary == value || isRepaintBoundary) {
    return;
  }
  _forceToRepaintBoundary = value;
  renderStyle.requestWidgetToRebuild(ToRepaintBoundaryUpdateReason());
  updateElementKey();
}