bottomRight method

NikuIconButton bottomRight()

Apply widget to bottom right

Equivalent to:

IconButton(
  alignment: Alignment.bottomRight
)

Implementation

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

  return this;
}