scale75 method

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

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

Implementation

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