text method
Implementation
StyledText text(
String text, {
bool inherit = false,
Key? key,
String? semanticsLabel,
Style? style,
}) {
return StyledText(
text,
semanticsLabel: semanticsLabel,
style: merge(style),
key: key,
inherit: inherit,
);
}