scale105 method

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

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

Implementation

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