bottomLeft method

NikuIconButton bottomLeft()

Apply widget to bottom left

Equivalent to:

IconButton(
  alignment: Alignment.bottomLeft
)

Implementation

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

  return this;
}