copyWith method

DoDubbingResponseModel copyWith({
  1. String? dubbingId,
  2. double? expectedDurationSec,
})

Implementation

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