NextColorTweenWidget constructor

const NextColorTweenWidget({
  1. Key? key,
  2. AnimationController? controller,
  3. Duration animationDuration = const Duration(milliseconds: 600),
  4. required Color beginColor,
  5. required Color endColor,
  6. required Widget child(
    1. AnimationController controller,
    2. Color? color
    ),
})

Implementation

const NextColorTweenWidget(
    {Key? key,
    this.controller,
    this.animationDuration = const Duration(milliseconds: 600),
    required this.beginColor,
    required this.endColor,
    required this.child})
    : super(key: key);