copyWithWrapped method
Implementation
OktaEventActorV3 copyWithWrapped(
{Wrapped<String?>? id,
Wrapped<String?>? type,
Wrapped<String?>? alternateId,
Wrapped<String?>? displayName}) {
return OktaEventActorV3(
id: (id != null ? id.value : this.id),
type: (type != null ? type.value : this.type),
alternateId:
(alternateId != null ? alternateId.value : this.alternateId),
displayName:
(displayName != null ? displayName.value : this.displayName));
}