copyWithWrapped method

UseCustomFrameRate$Response copyWithWrapped({
  1. Wrapped<Object?>? useCustomFrameRate,
})

Implementation

UseCustomFrameRate$Response copyWithWrapped(
    {Wrapped<Object?>? useCustomFrameRate}) {
  return UseCustomFrameRate$Response(
      useCustomFrameRate: (useCustomFrameRate != null
          ? useCustomFrameRate.value
          : this.useCustomFrameRate));
}