textStart property

TextModifier get textStart

Aligns text to the start (left in LTR, right in RTL).

Implementation

TextModifier get textStart => WrappedText(
      textAlign: (context, theme) => TextAlign.start,
      child: this,
    );