scale110 method

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

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

Implementation

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