copyWithWrapped method
Implementation
InstallerDTO copyWithWrapped(
{Wrapped<String?>? firstName,
Wrapped<String?>? lastName,
Wrapped<String?>? email,
Wrapped<String?>? company}) {
return InstallerDTO(
firstName: (firstName != null ? firstName.value : this.firstName),
lastName: (lastName != null ? lastName.value : this.lastName),
email: (email != null ? email.value : this.email),
company: (company != null ? company.value : this.company));
}