copyWith method
Implementation
ConsentUpdateV3Body copyWith(
{String? email,
bool? isHomeowner,
bool? hasAcceptedConsent,
String? source}) {
return ConsentUpdateV3Body(
email: email ?? this.email,
isHomeowner: isHomeowner ?? this.isHomeowner,
hasAcceptedConsent: hasAcceptedConsent ?? this.hasAcceptedConsent,
source: source ?? this.source);
}