copyWith method
Implementation
AuditRecordCreateAuthor copyWith(
{AuditRecordCreateAuthorType? type,
String? displayName,
Map<String, dynamic>? operations,
String? username,
String? userKey}) {
return AuditRecordCreateAuthor(
type: type ?? this.type,
displayName: displayName ?? this.displayName,
operations: operations ?? this.operations,
username: username ?? this.username,
userKey: userKey ?? this.userKey,
);
}