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