ExOpacityAnimation constructor

const ExOpacityAnimation({
  1. Key? key,
  2. Duration? duration = const Duration(milliseconds: 1000),
  3. Widget? child,
  4. Curve? curve = Curves.ease,
  5. double? begin = 0.0,
  6. double? end = 1.0,
})

Implementation

const ExOpacityAnimation({
  super.key,
  this.duration = const Duration(milliseconds: 1000),
  this.child,
  this.curve = Curves.ease,
  this.begin = 0.0,
  this.end = 1.0,
});