Rating constructor

Rating(
  1. {bool? hasNumber,
  2. String? customRatingSvgUnselected,
  3. String? customRatingSvgSelected,
  4. double? svgHeight,
  5. double? svgWidth}
)

Implementation

Rating({
  this.hasNumber,
  this.customRatingSvgUnselected,
  this.customRatingSvgSelected,
  this.svgHeight,
  this.svgWidth,
});