AnimatedCheckmark constructor

const AnimatedCheckmark({
  1. Key? key,
  2. Color? color,
  3. Color? fill,
  4. double? weight,
  5. double? padding,
  6. ShapeBorder? shape,
  7. StrokeStyle? style,
  8. double? size,
  9. bool? value = true,
  10. Duration duration = const Duration(milliseconds: 200),
  11. Curve curve = Curves.linear,
})

Implementation

const AnimatedCheckmark({
  Key? key,
  this.color,
  this.fill,
  this.weight,
  this.padding,
  this.shape,
  this.style,
  this.size,
  this.value = true,
  Duration duration = const Duration(milliseconds: 200),
  Curve curve = Curves.linear,
}) : super(
        key: key,
        duration: duration,
        curve: curve,
      );