textStart method

Widget textStart()

Implementation

Widget textStart() {
  if (this is WrappedText) {
    return (this as WrappedText).copyWith(
      textAlign: (context, theme) => TextAlign.start,
    );
  }
  return WrappedText(
    textAlign: (context, theme) => TextAlign.start,
    child: this,
  );
}