scale200 method

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

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

Implementation

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