renderShape method
Implementation
Widget renderShape() {
return CustomPaint(
size: Size(this.size, this.size),
painter: DrawHexagon(
background: this.background, with3DEffect: this.with3DEffect),
child: this.child,
);
}
Widget renderShape() {
return CustomPaint(
size: Size(this.size, this.size),
painter: DrawHexagon(
background: this.background, with3DEffect: this.with3DEffect),
child: this.child,
);
}