CustomOpacityTransition constructor

const CustomOpacityTransition({
  1. Key? key,
  2. bool? visible,
  3. Widget? child,
})

Implementation

const CustomOpacityTransition({
  Key? key,
  this.visible,
  this.child,
}) : super(key: key);