scale90 method

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

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

Implementation

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