copyWith method

Implementation

VoiceGenerationParameterOptionResponseModel copyWith(
    {String? name, String? code}) {
  return VoiceGenerationParameterOptionResponseModel(
      name: name ?? this.name, code: code ?? this.code);
}