topRight method

Niku topRight()

Apply widget to top right

Equivalent to:

Align(
  alignment: Alignment.topRight
)

Implementation

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