scale100 method

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

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

Implementation

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