BottomProgress constructor

const BottomProgress({
  1. Key? key,
  2. StrutStyle? strutStyle,
  3. TextAlign? textAlign,
  4. TextDirection? textDirection,
  5. Locale? locale,
  6. bool? softWrap,
  7. TextOverflow? overflow,
  8. double? textScaleFactor,
  9. int? maxLines,
  10. String? semanticsLabel,
  11. TextWidthBasis? textWidthBasis,
  12. TextHeightBehavior? textHeightBehavior,
  13. required int pointCount,
  14. required int pageCount,
  15. required Color onColor,
  16. required Color offColor,
  17. double? fontSize,
  18. bool inherit = true,
  19. Color? backgroundColor,
  20. FontWeight? fontWeight,
  21. FontStyle? fontStyle,
  22. double? letterSpacing,
  23. double? wordSpacing,
  24. TextBaseline? textBaseline,
  25. double? height,
  26. TextLeadingDistribution? leadingDistribution,
  27. Paint? foreground,
  28. Paint? background,
  29. List<Shadow>? shadows,
  30. List<FontFeature>? fontFeatures,
  31. TextDecoration? decoration,
  32. Color? decorationColor,
  33. TextDecorationStyle? decorationStyle,
  34. double? decorationThickness,
  35. String? debugLabel,
  36. String? fontFamily,
})

Implementation

const BottomProgress({
  Key? key,
  //style
  this.strutStyle,
  this.textAlign,
  this.textDirection,
  this.locale,
  this.softWrap,
  this.overflow,
  this.textScaleFactor,
  this.maxLines,
  this.semanticsLabel,
  this.textWidthBasis,
  this.textHeightBehavior,

  //textStyle
  //required
  required this.pointCount,
  required this.pageCount,
  required this.onColor,
  required this.offColor,

  //nullable
  this.fontSize,
  this.inherit = true,
  this.backgroundColor,
  this.fontWeight,
  this.fontStyle,
  this.letterSpacing,
  this.wordSpacing,
  this.textBaseline,
  this.height,
  this.leadingDistribution,
  this.foreground,
  this.background,
  this.shadows,
  this.fontFeatures,
  this.decoration,
  this.decorationColor,
  this.decorationStyle,
  this.decorationThickness,
  this.debugLabel,
  this.fontFamily,
}) : super(key: key);