copyWithWrapped method
Implementation
HistoryAlignmentResponseModel copyWithWrapped(
{Wrapped<List<String>>? characters,
Wrapped<List<double>>? characterStartTimesSeconds,
Wrapped<List<double>>? characterEndTimesSeconds}) {
return HistoryAlignmentResponseModel(
characters: (characters != null ? characters.value : this.characters),
characterStartTimesSeconds: (characterStartTimesSeconds != null
? characterStartTimesSeconds.value
: this.characterStartTimesSeconds),
characterEndTimesSeconds: (characterEndTimesSeconds != null
? characterEndTimesSeconds.value
: this.characterEndTimesSeconds));
}