passthrough method

NikuStack passthrough()

Adjust fit using StackFit of stack

Using StackFit.passthrough

Equivalent to:

Stack(
  fit: StackFit.passthrough
)

Implementation

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

  return this;
}