renderShape method

Widget renderShape()

Implementation

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