paint method
paint API.
Implementation
@override
void paint(Context context, PwOffset offset) {
if (background != null) {
_paintDeco(context, offset, size, background!);
}
for (final (PwBox box, PwOffset childOffset) in children) {
box.paint(context, offset.translate(childOffset.dx, childOffset.dy));
}
}