scale50 method

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

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

Implementation

Widget scale50({Key? key}) => Transform.scale(
      key: key,
      scale: 0.5,
      child: this,
    );