TrustedAdvisorResourcesSummary.fromJson constructor
Implementation
factory TrustedAdvisorResourcesSummary.fromJson(Map<String, dynamic> json) {
return TrustedAdvisorResourcesSummary(
resourcesFlagged: json['resourcesFlagged'] as int,
resourcesIgnored: json['resourcesIgnored'] as int,
resourcesProcessed: json['resourcesProcessed'] as int,
resourcesSuppressed: json['resourcesSuppressed'] as int,
);
}