FlippingInt constructor

const FlippingInt({
  1. Key? key,
  2. required int number,
  3. required TextStyle style,
  4. required double width,
  5. required double height,
  6. String prefix = '',
})

Implementation

const FlippingInt({
  Key? key,
  required this.number,
  required this.style,
  required this.width,
  required this.height,
  this.prefix = '',
}) : super(key: key);