ContentHistoryExpandable.fromJson constructor

ContentHistoryExpandable.fromJson(
  1. Map<String, Object?> json
)

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?,
  );
}