markNeedsPaint method
void
markNeedsPaint()
Mark this render object as needing paint.
Implementation
void markNeedsPaint() {
final owner = _pipelineOwner;
if (owner == null) {
_needsPaint = true;
return;
}
owner.schedulePaint(this);
}