copyWithWrapped method

Y$Response copyWithWrapped({
  1. Wrapped<double?>? y,
})

Implementation

Y$Response copyWithWrapped({Wrapped<double?>? y}) {
  return Y$Response(y: (y != null ? y.value : this.y));
}