topRight method

Niku topRight()

Apply widget to top right

Equivalent to:

Align(
  alignment: Alignment.topRight
)

Implementation

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

  return this;
}