flipY method

Widget flipY({
  1. Key? key,
  2. double? radian,
})

Extension method to rotate along Y-axis any widget without wrapping or with dot operator.

Implementation

Widget flipY({Key? key, double? radian}) => Transform(
      key: key,
      transform: Matrix4.rotationY(radian ?? 90),
      child: this,
    );