DescribeTrustedAdvisorChecksResponse.fromJson constructor

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

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