topRight method

NikuButton topRight()

Apply widget to top right

Equivalent to:

TextButton(
  alignment: Alignment.topRight
)

Implementation

NikuButton topRight() {
  this._alignment = Alignment.topRight;

  return this;
}