opacity method

VContainer opacity(
  1. double value
)

Sets the opacity of the container's child.

Implementation

VContainer opacity(double value) => VContainer(
  child: Opacity(opacity: value, child: child),
  alignment: alignment,
  padding: padding,
  margin: margin,
  width: _width,
  height: _height,
  decoration: decoration,
);