copyWithWrapped method
Implementation
SpeakerResponseModel copyWithWrapped(
{Wrapped<String>? speakerId,
Wrapped<double>? durationSecs,
Wrapped<dynamic>? utterances}) {
return SpeakerResponseModel(
speakerId: (speakerId != null ? speakerId.value : this.speakerId),
durationSecs:
(durationSecs != null ? durationSecs.value : this.durationSecs),
utterances: (utterances != null ? utterances.value : this.utterances));
}