opacity75 method

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

Provides 75% opacity which means partially invisible

Implementation

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