text method

RichTextBuilder text(
  1. String text, {
  2. TextStyle? style,
})

Implementation

RichTextBuilder text(String text, {TextStyle? style}) {
  return applyChild(text, baseStyle: style ?? textTheme.bodyText2);
}