text method
Implementation
text(String text, {TextOverflow? overflow, StrutStyle? strutStyle, bool? softWrap}) {
return Text(
text,
style: this,
softWrap: softWrap,
overflow: overflow,
strutStyle: strutStyle,
);
}
text(String text, {TextOverflow? overflow, StrutStyle? strutStyle, bool? softWrap}) {
return Text(
text,
style: this,
softWrap: softWrap,
overflow: overflow,
strutStyle: strutStyle,
);
}