createChildContext method
Creates a painting context configured to paint into childLayer.
The bounds are estimated paint bounds for debugging purposes.
Implementation
@override
PaintingContext createChildContext(ContainerLayer childLayer, Rect bounds) {
return BlockedTextPaintingContext(
containerLayer: childLayer,
estimatedBounds: bounds,
);
}