rotateN45 method

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

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

Implementation

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