DescribeTrustedAdvisorCheckRefreshStatusesResponse.fromJson constructor

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

Implementation

factory DescribeTrustedAdvisorCheckRefreshStatusesResponse.fromJson(
    Map<String, dynamic> json) {
  return DescribeTrustedAdvisorCheckRefreshStatusesResponse(
    statuses: (json['statuses'] as List)
        .whereNotNull()
        .map((e) => TrustedAdvisorCheckRefreshStatus.fromJson(
            e as Map<String, dynamic>))
        .toList(),
  );
}