opacity method

Widget opacity(
  1. double value
)

Sets the opacity of the widget.

Maps to Bootstrap's .opacity-* utilities.

Implementation

Widget opacity(double value) => Opacity(
      opacity: value,
      child: this,
    );