copyWithWrapped method
Implementation
ConsentUpdateV2Body copyWithWrapped(
{Wrapped<String?>? email,
Wrapped<bool?>? isHomeowner,
Wrapped<bool?>? hasAcceptedConsent,
Wrapped<String?>? source}) {
return ConsentUpdateV2Body(
email: (email != null ? email.value : this.email),
isHomeowner:
(isHomeowner != null ? isHomeowner.value : this.isHomeowner),
hasAcceptedConsent: (hasAcceptedConsent != null
? hasAcceptedConsent.value
: this.hasAcceptedConsent),
source: (source != null ? source.value : this.source));
}