withOpacity method

Opacity withOpacity([
  1. double opacity = 1.0
])

Changes the opacity of the widget.

opacity The opacity level (0.0 to 1.0).

Implementation

Opacity withOpacity([double opacity = 1.0]) {
  return Opacity(opacity: opacity, child: this);
}