typeset method
TypeSet
typeset({
- TextStyle? style,
- TextAlign textAlign = TextAlign.start,
- TextDirection? textDirection,
- Locale? locale,
- bool? softWrap,
- TextOverflow? overflow,
- TextScaler? textScaler,
- int? maxLines,
- String? semanticsLabel,
- TextWidthBasis? textWidthBasis,
- TextHeightBehavior? textHeightBehavior,
- Color? selectionColor,
- StrutStyle? strutStyle,
- GestureRecognizer recognizerBuilder()?,
- TextStyle? linkStyle,
- TextStyle? boldStyle,
- TextStyle? monospaceStyle,
typeset method to format the text with different styles
Implementation
TypeSet typeset({
TextStyle? style,
TextAlign textAlign = TextAlign.start,
TextDirection? textDirection,
Locale? locale,
bool? softWrap,
TextOverflow? overflow,
TextScaler? textScaler,
int? maxLines,
String? semanticsLabel,
TextWidthBasis? textWidthBasis,
TextHeightBehavior? textHeightBehavior,
Color? selectionColor,
StrutStyle? strutStyle,
GestureRecognizer Function(String linkText, String url)? recognizerBuilder,
TextStyle? linkStyle,
TextStyle? boldStyle,
TextStyle? monospaceStyle,
}) {
return TypeSet(
this,
style: style,
textAlign: textAlign,
textDirection: textDirection,
locale: locale,
softWrap: softWrap,
overflow: overflow,
textScaler: textScaler,
maxLines: maxLines,
semanticsLabel: semanticsLabel,
textWidthBasis: textWidthBasis,
textHeightBehavior: textHeightBehavior,
selectionColor: selectionColor,
strutStyle: strutStyle,
linkRecognizerBuilder: recognizerBuilder,
linkStyle: linkStyle,
boldStyle: boldStyle,
monospaceStyle: monospaceStyle,
);
}