InfoRatingRF constructor

const InfoRatingRF({
  1. dynamic key,
  2. Icon? icon,
  3. double rating = 0.0,
  4. String? info,
  5. bool show = true,
  6. Function? builder,
  7. Function? onTap,
})

Implementation

const InfoRatingRF(
    {key,
    this.icon,
    this.rating = 0.0,
    this.info,
    this.show = true,
    this.builder,
    this.onTap})
    : super(key: key);