scale0 method

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

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

Implementation

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