clearPaintDirtySubtree method
void
clearPaintDirtySubtree()
Marks this render object and all descendants as paint-clean.
Implementation
void clearPaintDirtySubtree() {
_paintDirty = false;
for (final child in children) {
child.clearPaintDirtySubtree();
}
}