ast property
Widget
get
ast
Implementation
Widget get ast => this is Text
? AutoSizeText(
(this as Text).data ?? "",
style: (this as Text).style,
minFontSize: 9,
maxFontSize: (this as Text).style?.fontSize ?? 16,
)
: this;