bottomCenter method

NikuStack bottomCenter()

Apply widget to bottom end

Equivalent to:

Stack(
  alignment: AlignmentDirectional.bottomCenter
)

Implementation

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

  return this;
}