rotateN90 method

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

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

Implementation

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