opacity method

AnimatedWidgetBuilder opacity(
  1. double value
)

Set custom opacity

Implementation

AnimatedWidgetBuilder opacity(double value) {
  return _copyWith(config: config.copyWith(opacity: value.clamp(0.0, 1.0)));
}