bottomCenter method

NikuIconButton bottomCenter()

Apply widget to bottom center

Equivalent to:

IconButton(
  alignment: Alignment.bottomCenter
)

Implementation

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

  return this;
}