topLeft method

Niku topLeft()

Apply widget to top left

Equivalent to:

Align(
  alignment: Alignment.topLeft
)

Implementation

Niku topLeft() {
  _widget = Align(
    alignment: Alignment.topLeft,
    child: _widget,
  );

  return this;
}