opacity0 method

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

Provides 0% opacity which means fully invisible

Implementation

Widget opacity0({Key? key}) => Opacity(
      opacity: 0.0,
      child: this,
    );