ContentHistoryContributors.fromJson constructor

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

Implementation

factory ContentHistoryContributors.fromJson(Map<String, Object?> json) {
  return ContentHistoryContributors(
    publishers: json[r'publishers'] != null
        ? UsersUserKeys.fromJson(json[r'publishers']! as Map<String, Object?>)
        : null,
  );
}