topStart method

NikuStack topStart()

Apply widget to top start

Equivalent to:

Stack(
  alignment: AlignmentDirectional.topStart
)

Implementation

NikuStack topStart() {
  this._alignment = AlignmentDirectional.topStart;

  return this;
}