ContentMetadataCurrentuserExpandable.fromJson constructor

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

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