ltr method

NikuRow ltr()

Use left-to-right direction

Equivalent to

Row(textDirection: TextDirection.ltr)

Implementation

NikuRow ltr() {
  this._textDirection = TextDirection.ltr;

  return this;
}