copyWith method

AddVoiceIVCResponseModel copyWith({
  1. String? voiceId,
  2. bool? requiresVerification,
})

Implementation

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