copyWithWrapped method
Implementation
KemproApiV2DevicesIdSignaturesPost$RequestBody copyWithWrapped(
{Wrapped<String?>? file,
Wrapped<String?>? email,
Wrapped<enums.HomeownerConsentActionV2?>? action,
Wrapped<String?>? firstName,
Wrapped<String?>? lastName}) {
return KemproApiV2DevicesIdSignaturesPost$RequestBody(
file: (file != null ? file.value : this.file),
email: (email != null ? email.value : this.email),
action: (action != null ? action.value : this.action),
firstName: (firstName != null ? firstName.value : this.firstName),
lastName: (lastName != null ? lastName.value : this.lastName));
}