textAlign property

TextAlign textAlign

Implementation

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

Implementation

set textAlign(TextAlign? value) {
  if (value == null) return;
  addAction((Canvas canvas, Size size) {
    _textAlign = value;
  });
}