rotate0 method

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

Extension method to rotate any widget by 0 degrees without wrapping or with dot operator.

Implementation

Widget rotate0({Key? key}) => Transform.rotate(
      key: key,
      angle: 0,
      child: this,
    );