copyWithWrapped method

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

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));
}