copyWith method

AddVoiceResponseModel copyWith({
  1. String? voiceId,
})

Implementation

AddVoiceResponseModel copyWith({String? voiceId}) {
  return AddVoiceResponseModel(voiceId: voiceId ?? this.voiceId);
}