copyWith method
Implementation
AddVoiceIVCResponseModel copyWith(
{String? voiceId, bool? requiresVerification}) {
return AddVoiceIVCResponseModel(
voiceId: voiceId ?? this.voiceId,
requiresVerification:
requiresVerification ?? this.requiresVerification);
}