copyWithWrapped method

KemApiV3DevicesIdSignaturesPost$RequestBody copyWithWrapped({
  1. Wrapped<String?>? file,
  2. Wrapped<String?>? email,
  3. Wrapped<HomeownerConsentActionDTO?>? action,
  4. Wrapped<String?>? firstName,
  5. Wrapped<String?>? lastName,
})

Implementation

KemApiV3DevicesIdSignaturesPost$RequestBody copyWithWrapped(
    {Wrapped<String?>? file,
    Wrapped<String?>? email,
    Wrapped<enums.HomeownerConsentActionDTO?>? action,
    Wrapped<String?>? firstName,
    Wrapped<String?>? lastName}) {
  return KemApiV3DevicesIdSignaturesPost$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));
}