FastBaseTypography constructor
const
FastBaseTypography({
- Key? key,
- required String text,
- bool enableInteractiveSelection = false,
- double lineHeight = kFastLineHeight,
- TextAlign textAlign = TextAlign.left,
- bool upperCase = false,
- double? letterSpacing,
- FontWeight? fontWeight,
- Color? textColor,
- double? fontSize,
- int? maxLines,
- TextOverflow? overflow,
- 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);