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