textEnd method
Implementation
Widget textEnd() {
if (this is WrappedText) {
return (this as WrappedText).copyWith(
textAlign: (context, theme) => TextAlign.end,
);
}
return WrappedText(
textAlign: (context, theme) => TextAlign.end,
child: this,
);
}