centerLeft method

NikuIconButton centerLeft()

Apply widget to center left

Equivalent to:

IconButton(
  alignment: Alignment.centerLeft
)

Implementation

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

  return this;
}