opacity25 method

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

Provides 25% opacity which means partially visible

Implementation

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