end method

Set alignment to end, suitable for dynamic TextDirection

Equivalent to

Text(textAlign: TextAlign.end)

Implementation

NikuTextField end() {
  this._textAlign = TextAlign.end;

  return this;
}