copyWith method
Implementation
SpeakerResponseModel copyWith(
{String? speakerId, double? durationSecs, dynamic utterances}) {
return SpeakerResponseModel(
speakerId: speakerId ?? this.speakerId,
durationSecs: durationSecs ?? this.durationSecs,
utterances: utterances ?? this.utterances);
}