copyWith method
AudioWithTimestampsResponseModel
copyWith({
- String? audioBase64,
- dynamic alignment,
- dynamic normalizedAlignment,
Implementation
AudioWithTimestampsResponseModel copyWith(
{String? audioBase64, dynamic alignment, dynamic normalizedAlignment}) {
return AudioWithTimestampsResponseModel(
audioBase64: audioBase64 ?? this.audioBase64,
alignment: alignment ?? this.alignment,
normalizedAlignment: normalizedAlignment ?? this.normalizedAlignment);
}