FastSecondaryCaption constructor

const FastSecondaryCaption({
  1. required String text,
  2. bool enableInteractiveSelection = false,
  3. double lineHeight = kFastLineHeight,
  4. TextAlign textAlign = TextAlign.left,
  5. bool upperCase = true,
  6. FontWeight? fontWeight,
  7. TextOverflow? overflow,
  8. Color? textColor,
  9. double? fontSize,
  10. int? maxLines,
  11. bool? softWrap,
  12. Key? key,
})

Implementation

const FastSecondaryCaption({
  required super.text,
  super.enableInteractiveSelection = false,
  super.lineHeight = kFastLineHeight,
  super.textAlign = TextAlign.left,
  super.upperCase = true,
  super.fontWeight,
  super.overflow,
  super.textColor,
  super.fontSize,
  super.maxLines,
  super.softWrap,
  super.key,
});