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