MotionAnimatedCheckmark constructor

const MotionAnimatedCheckmark({
  1. Key? key,
  2. required bool checked,
  3. double size = 32.0,
  4. Color? color,
})

Implementation

const MotionAnimatedCheckmark({
  super.key,
  required this.checked,
  this.size = 32.0,
  this.color,
});