opacity method

Widget opacity(
  1. double value, [
  2. double? breakpoint
])

Sets the opacity of the widget.

Maps to Bootstrap's .opacity-* utilities.

Implementation

Widget opacity(double value, [double? breakpoint]) => _apply(
      breakpoint,
      (w) => Opacity(
        opacity: value,
        child: w,
      ),
    );