opacity100 method

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

Provides 100% opacity which means fully visible

Implementation

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