bottomEnd method

NikuStack bottomEnd()

Apply widget to bottom right

Equivalent to:

Stack(
  alignment: AlignmentDirectional.bottomEnd
)

Implementation

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

  return this;
}