expand method

NikuStack expand()

Adjust fit using StackFit of stack

Using StackFit.expand

Equivalent to:

Stack(
  fit: StackFit.expand
)

Implementation

NikuStack expand() {
  this._fit = StackFit.expand;

  return this;
}