copyWithWrapped method
Implementation
VoiceSharingModerationCheckResponseModel copyWithWrapped(
{Wrapped<dynamic>? dateCheckedUnix,
Wrapped<dynamic>? nameValue,
Wrapped<dynamic>? nameCheck,
Wrapped<dynamic>? descriptionValue,
Wrapped<dynamic>? descriptionCheck,
Wrapped<dynamic>? sampleIds,
Wrapped<dynamic>? sampleChecks,
Wrapped<dynamic>? captchaIds,
Wrapped<dynamic>? captchaChecks}) {
return VoiceSharingModerationCheckResponseModel(
dateCheckedUnix: (dateCheckedUnix != null
? dateCheckedUnix.value
: this.dateCheckedUnix),
nameValue: (nameValue != null ? nameValue.value : this.nameValue),
nameCheck: (nameCheck != null ? nameCheck.value : this.nameCheck),
descriptionValue: (descriptionValue != null
? descriptionValue.value
: this.descriptionValue),
descriptionCheck: (descriptionCheck != null
? descriptionCheck.value
: this.descriptionCheck),
sampleIds: (sampleIds != null ? sampleIds.value : this.sampleIds),
sampleChecks:
(sampleChecks != null ? sampleChecks.value : this.sampleChecks),
captchaIds: (captchaIds != null ? captchaIds.value : this.captchaIds),
captchaChecks:
(captchaChecks != null ? captchaChecks.value : this.captchaChecks));
}