copyWithWrapped method

Strength$Response copyWithWrapped({
  1. Wrapped<double?>? strength,
})

Implementation

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