textAlign property
How the text should be aligned horizontally.
Implementation
TextAlign get textAlign => _textPainter.textAlign;
Implementation
set textAlign(TextAlign value) {
assert(value != null);
if (_textPainter.textAlign == value)
return;
_textPainter.textAlign = value;
markNeedsPaint();
}