copyWithWrapped method

CustomFrameRate$Response copyWithWrapped({
  1. Wrapped<double?>? customFrameRate,
})

Implementation

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