MotionLikeButton constructor

const MotionLikeButton({
  1. Key? key,
  2. bool initialLiked = false,
  3. ValueChanged<bool>? onChanged,
  4. double size = 28.0,
})

Implementation

const MotionLikeButton({
  super.key,
  this.initialLiked = false,
  this.onChanged,
  this.size = 28.0,
});