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