bottomRight method

NikuButton bottomRight()

Apply widget to bottom right

Equivalent to:

TextButton(
  alignment: Alignment.bottomRight
)

Implementation

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

  return this;
}