bottomCenter method

Niku bottomCenter()

Apply widget to bottom center

Equivalent to:

Align(
  alignment: Alignment.bottomCenter
)

Implementation

Niku bottomCenter() => Niku(Align(
      alignment: Alignment.bottomCenter,
      child: this._widget,
    ));