TextAlign textAlign

How the text should be aligned horizontally.

Source

TextAlign get textAlign => _textAlign;
void textAlign=(TextAlign value)

Source

set textAlign(TextAlign value) {
  if (_textAlign == value)
    return;
  _textAlign = value;
  _paragraph = null;
  _needsLayout = true;
}