bottomLeft method

NikuButton bottomLeft()

Apply widget to bottom left

Equivalent to:

TextButton(
  alignment: Alignment.bottomLeft
)

Implementation

NikuButton bottomLeft() {
  this._alignment = Alignment.bottomLeft;

  return this;
}