AnimatedCounter constructor

const AnimatedCounter({
  1. required String value,
  2. String? prefix,
  3. String? suffix,
  4. String? label,
  5. String fontSize = '48px',
  6. String? color,
  7. String? gradientStart,
  8. String? gradientEnd,
})

Implementation

const AnimatedCounter({
  required this.value,
  this.prefix,
  this.suffix,
  this.label,
  this.fontSize = '48px',
  this.color,
  this.gradientStart,
  this.gradientEnd,
});