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