FadeTint constructor

FadeTint({
  1. required Color color,
  2. required Duration duration,
  3. Widget? child,
  4. bool fadeIn = true,
  5. bool autoStart = true,
  6. Key? key,
})

Implementation

FadeTint({
  required this.color,
  required this.duration,
  this.child,
  this.fadeIn = true,
  this.autoStart = true,
  super.key,
});