renderShape method

Widget renderShape()

Implementation

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