build method
Render a clipped child widget
Implementation
@override
Widget build(BuildContext context) {
return AspectRatio(
aspectRatio: 1.0,
child: CustomPaint(
painter: GuiShapeShadowPainter(shape, shadows!),
child: ClipPath(
clipper: GuiShapeClipper(shape),
child: child,
)));
}