HeartWidget constructor

const HeartWidget({
  1. Key? key,
  2. double width = 200,
  3. double height = 200,
  4. Color color = Colors.red,
})

Implementation

const HeartWidget({
  super.key,
  this.width = 200,
  this.height = 200,
  this.color = Colors.red,
});