bottomCenter method

NikuButton bottomCenter()

Apply widget to bottom center

Equivalent to:

TextButton(
  alignment: Alignment.bottomCenter
)

Implementation

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

  return this;
}