opacity method

Widget opacity(
  1. double value
)

Sets the opacity of the widget.

Implementation

Widget opacity(double value) {
  return Opacity(
    opacity: value,
    child: this,
  );
}