McCountingText constructor

const McCountingText({
  1. Key? key,
  2. required double begin,
  3. required double end,
  4. int precision = 0,
  5. Curve curve = Curves.linear,
  6. Duration duration = const Duration(milliseconds: 250),
  7. TextStyle? style,
  8. TextAlign? textAlign,
  9. TextDirection? textDirection,
  10. Locale? locale,
  11. bool? softWrap,
  12. TextOverflow? overflow,
  13. double? textScaleFactor,
  14. int? maxLines,
  15. String? semanticsLabel,
})

Implementation

const McCountingText({
  Key? key,
  required this.begin,
  required this.end,
  this.precision = 0,
  this.curve = Curves.linear,
  this.duration = const Duration(milliseconds: 250),
  this.style,
  this.textAlign,
  this.textDirection,
  this.locale,
  this.softWrap,
  this.overflow,
  this.textScaleFactor,
  this.maxLines,
  this.semanticsLabel,
}) : super(key: key);