copyWith method
Implementation
BodyEditVoiceV1VoicesVoiceIdEditPost copyWith(
{String? name,
List<String>? files,
bool? removeBackgroundNoise,
dynamic description,
dynamic labels}) {
return BodyEditVoiceV1VoicesVoiceIdEditPost(
name: name ?? this.name,
files: files ?? this.files,
removeBackgroundNoise:
removeBackgroundNoise ?? this.removeBackgroundNoise,
description: description ?? this.description,
labels: labels ?? this.labels);
}