opacity method

Widget opacity(
  1. double opacity, [
  2. bool alwaysIncludeSemantics = false
])

Implementation

Widget opacity(double opacity, [bool alwaysIncludeSemantics = false]) {
  return Opacity(child: this, opacity: opacity, alwaysIncludeSemantics: alwaysIncludeSemantics);
}