ContentMetadataCurrentuserExpandable.fromJson constructor
Implementation
factory ContentMetadataCurrentuserExpandable.fromJson(
Map<String, Object?> json) {
return ContentMetadataCurrentuserExpandable(
favourited: json[r'favourited'] as String?,
lastmodified: json[r'lastmodified'] as String?,
lastcontributed: json[r'lastcontributed'] as String?,
viewed: json[r'viewed'] as String?,
scheduled: json[r'scheduled'] as String?,
);
}