loose method

NikuStack loose()

Adjust fit using StackFit of stack

Using StackFit.loose

Equivalent to:

Stack(
  fit: StackFit.loose
)

Implementation

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

  return this;
}