SmartRating constructor

const SmartRating({
  1. Key? key,
  2. double value = 0.0,
  3. SmartIconData? icon,
  4. Color? iconColor,
  5. Color? surface,
})

Implementation

const SmartRating({
  super.key,
  this.value = 0.0,
  this.icon,
  this.iconColor,
  this.surface,
});