copyWith method

Implementation

VoicePreviewsResponseModel copyWith(
    {List<VoicePreviewResponseModel>? previews, String? text}) {
  return VoicePreviewsResponseModel(
      previews: previews ?? this.previews, text: text ?? this.text);
}