opacity method
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,
),
);