StarPainter constructor

StarPainter({
  1. Color? starColor,
  2. String? centerText,
  3. TextStyle? centerTextStyle,
  4. double fontSizeRatio = 0.2,
})

Implementation

StarPainter({
  this.starColor,
  this.centerText,
  this.centerTextStyle,
  this.fontSizeRatio = 0.2,
});