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