topEnd method

NikuStack topEnd()

Apply widget to top end

Equivalent to:

Stack(
  alignment: AlignmentDirectional.topEnd
)

Implementation

NikuStack topEnd() {
  this._alignment = AlignmentDirectional.topEnd;

  return this;
}