topCenter method

Niku topCenter()

Apply widget to top center

Equivalent to:

Align(
  alignment: Alignment.topCenter
)

Implementation

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