topLeft method

NikuIconButton topLeft()

Apply widget to top left

Equivalent to:

IconButton(
  alignment: Alignment.topLeft
)

Implementation

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

  return this;
}