FadeWidget constructor

const FadeWidget(
  1. Widget child, {
  2. Key? key,
  3. int duration = 1000,
  4. int delayed = 1000,
  5. bool rest = false,
})

Implementation

const FadeWidget(this.child,
    {Key? key, this.duration = 1000, this.delayed = 1000, this.rest = false})
    : super(key: key);