DescribeTrustedAdvisorChecksResponse.fromJson constructor
Implementation
factory DescribeTrustedAdvisorChecksResponse.fromJson(
Map<String, dynamic> json) {
return DescribeTrustedAdvisorChecksResponse(
checks: (json['checks'] as List)
.whereNotNull()
.map((e) => TrustedAdvisorCheckDescription.fromJson(
e as Map<String, dynamic>))
.toList(),
);
}