CustomStyledTextAdvance constructor
CustomStyledTextAdvance({
- Key? key,
- bool newLineAsBreaks = true,
- required String text,
- Map<
String, StyledTextAdvanceTagBase> tags = const {}, - TextStyle? style,
- required StyledTextAdvanceWidgetBuilderCallback builder,
Create a CustomStyledTextAdvance with your own builder function.
This way you can manage the resulting TextSpan by yourself.
Implementation
CustomStyledTextAdvance({
super.key,
this.newLineAsBreaks = true,
required this.text,
this.tags = const {},
this.style,
required this.builder,
});