copyWithWrapped method

FrameRateMultiplier copyWithWrapped({
  1. Wrapped<int?>? frameRateMultiplier,
})

Implementation

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