copyWithWrapped method
Implementation
OktaEventV3 copyWithWrapped(
{Wrapped<String?>? uuid,
Wrapped<DateTime?>? published,
Wrapped<String?>? eventType,
Wrapped<String?>? version,
Wrapped<String?>? displayMessage,
Wrapped<String?>? severity,
Wrapped<OktaEventActorV3?>? actor,
Wrapped<List<OktaEventTargetV3>?>? target}) {
return OktaEventV3(
uuid: (uuid != null ? uuid.value : this.uuid),
published: (published != null ? published.value : this.published),
eventType: (eventType != null ? eventType.value : this.eventType),
version: (version != null ? version.value : this.version),
displayMessage: (displayMessage != null
? displayMessage.value
: this.displayMessage),
severity: (severity != null ? severity.value : this.severity),
actor: (actor != null ? actor.value : this.actor),
target: (target != null ? target.value : this.target));
}