rotateN60 method

Widget rotateN60({
  1. Key? key,
})

Extension method to rotate any widget by 60 degrees anti-clockwise without wrapping or with dot operator.

Implementation

Widget rotateN60({Key? key}) => Transform.rotate(
      key: key,
      angle: -math.pi / 3,
      child: this,
    );