y method

YForce y([
  1. ForceFun? fun
])

Implementation

YForce y([ForceFun? fun]) {
  if (fun != null) {
    _yFun = fun;
    _initialize();
  }
  return this;
}