textAlign property

MongolTextAlign textAlign

How the text should be aligned vertically.

This must not be null.

Implementation

MongolTextAlign get textAlign => _textPainter.textAlign;
void textAlign=(MongolTextAlign value)

Implementation

set textAlign(MongolTextAlign value) {
  if (_textPainter.textAlign == value) return;
  _textPainter.textAlign = value;
  markNeedsTextLayout();
}