copyWith method

FrameRateMultiplier$Response copyWith({
  1. int? frameRateMultiplier,
})

Implementation

FrameRateMultiplier$Response copyWith({int? frameRateMultiplier}) {
  return FrameRateMultiplier$Response(
      frameRateMultiplier: frameRateMultiplier ?? this.frameRateMultiplier);
}