copyWith method
Implementation
ContentHistoryExpandable copyWith(
{String? lastUpdated,
String? previousVersion,
String? contributors,
String? nextVersion,
String? ownedBy,
String? lastOwnedBy}) {
return ContentHistoryExpandable(
lastUpdated: lastUpdated ?? this.lastUpdated,
previousVersion: previousVersion ?? this.previousVersion,
contributors: contributors ?? this.contributors,
nextVersion: nextVersion ?? this.nextVersion,
ownedBy: ownedBy ?? this.ownedBy,
lastOwnedBy: lastOwnedBy ?? this.lastOwnedBy,
);
}