smallText function
Implementation
Widget smallText(
AppModel app,
BuildContext context,
String data, {
TextAlign? textAlign,
int? maxLines,
bool? softWrap,
}) =>
StyleRegistry.registry()
.styleWithApp(app)
.frontEndStyle()
.textStyle()
.smallText(
app,
context,
data,
textAlign: textAlign,
maxLines: maxLines,
softWrap: softWrap,
);