ContentHistoryExpandable.fromJson constructor
Implementation
factory ContentHistoryExpandable.fromJson(Map<String, Object?> json) {
return ContentHistoryExpandable(
lastUpdated: json[r'lastUpdated'] as String?,
previousVersion: json[r'previousVersion'] as String?,
contributors: json[r'contributors'] as String?,
nextVersion: json[r'nextVersion'] as String?,
ownedBy: json[r'ownedBy'] as String?,
lastOwnedBy: json[r'lastOwnedBy'] as String?,
);
}