FastBaseTypography constructor

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

Implementation

const FastBaseTypography({
  Key? key,
  required this.text,
  this.enableInteractiveSelection = false,
  this.lineHeight = kFastLineHeight,
  this.textAlign = TextAlign.left,
  this.upperCase = false,
  this.letterSpacing,
  this.fontWeight,
  this.textColor,
  this.fontSize,
  this.maxLines,
  this.overflow,
  this.softWrap,
}) : super(key: key);