textAlign property

set textAlign (TextAlign value)

Implementation

set textAlign(TextAlign value) {
  if (_prototypePainter.textAlign == value) {
    return;
  }
  _prototypePainter.textAlign = value;
  markNeedsLayout();
}