copyWith method

CustomFrameRate$Response copyWith({
  1. double? customFrameRate,
})

Implementation

CustomFrameRate$Response copyWith({double? customFrameRate}) {
  return CustomFrameRate$Response(
      customFrameRate: customFrameRate ?? this.customFrameRate);
}