topCenter method

NikuIconButton topCenter()

Apply widget to top center

Equivalent to:

IconButton(
  alignment: Alignment.topCenter
)

Implementation

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

  return this;
}