copyWithWrapped method
Implementation
FrameRateMultiplier copyWithWrapped({Wrapped<int?>? frameRateMultiplier}) {
return FrameRateMultiplier(
frameRateMultiplier: (frameRateMultiplier != null
? frameRateMultiplier.value
: this.frameRateMultiplier));
}