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