scale150 method

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

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

Implementation

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