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