ContributorInsightsSummary.fromJson constructor

ContributorInsightsSummary.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ContributorInsightsSummary.fromJson(Map<String, dynamic> json) {
  return ContributorInsightsSummary(
    contributorInsightsStatus: (json['ContributorInsightsStatus'] as String?)
        ?.toContributorInsightsStatus(),
    indexName: json['IndexName'] as String?,
    tableName: json['TableName'] as String?,
  );
}