copyWith method
Implementation
OktaEventV3Body copyWith(
{String? eventType,
String? eventTypeVersion,
String? source,
String? eventId,
OktaEventDataV3? data,
DateTime? eventTime,
String? contentType}) {
return OktaEventV3Body(
eventType: eventType ?? this.eventType,
eventTypeVersion: eventTypeVersion ?? this.eventTypeVersion,
source: source ?? this.source,
eventId: eventId ?? this.eventId,
data: data ?? this.data,
eventTime: eventTime ?? this.eventTime,
contentType: contentType ?? this.contentType);
}