copyWith method
Implementation
DoDubbingResponseModel copyWith(
{String? dubbingId, double? expectedDurationSec}) {
return DoDubbingResponseModel(
dubbingId: dubbingId ?? this.dubbingId,
expectedDurationSec: expectedDurationSec ?? this.expectedDurationSec);
}