centerEnd method

NikuStack centerEnd()

Apply widget to center end

Equivalent to:

Stack(
  alignment: AlignmentDirectional.centerEnd
)

Implementation

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

  return this;
}