scale95 method

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

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

Implementation

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