FadingAnimation constructor

const FadingAnimation({
  1. Key? key,
  2. required Widget child,
  3. int duration = 1,
})

Implementation

const FadingAnimation({
  Key? key,
  required this.child,
  this.duration = 1,
}) : super(key: key);