AnimatedCount constructor

const AnimatedCount({
  1. Key? key,
  2. required int count,
  3. required TextStyle style,
  4. Duration duration = const Duration(seconds: 1),
})

Implementation

const AnimatedCount({
  super.key,
  required this.count,
  required this.style,
  this.duration = const Duration(seconds: 1),
});