AnimatedDigitWidget constructor

const AnimatedDigitWidget({
  1. required String value,
  2. required String id,
  3. Key? key,
  4. TextStyle? digitTextStyle,
})

Implementation

const AnimatedDigitWidget({
  required this.value,
  required this.id,
  super.key,
  this.digitTextStyle,
});