topCenter method

NikuButton topCenter()

Apply widget to top center

Equivalent to:

TextButton(
  alignment: Alignment.topCenter
)

Implementation

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

  return this;
}