copyWithWrapped method
Implementation
AudioWithTimestampsResponseModel copyWithWrapped(
{Wrapped<String>? audioBase64,
Wrapped<dynamic>? alignment,
Wrapped<dynamic>? normalizedAlignment}) {
return AudioWithTimestampsResponseModel(
audioBase64:
(audioBase64 != null ? audioBase64.value : this.audioBase64),
alignment: (alignment != null ? alignment.value : this.alignment),
normalizedAlignment: (normalizedAlignment != null
? normalizedAlignment.value
: this.normalizedAlignment));
}