topRight method

NikuIconButton topRight()

Apply widget to top right

Equivalent to:

IconButton(
  alignment: Alignment.topRight
)

Implementation

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

  return this;
}