DescribeTrustedAdvisorCheckResultResponse.fromJson constructor
Implementation
factory DescribeTrustedAdvisorCheckResultResponse.fromJson(
Map<String, dynamic> json) {
return DescribeTrustedAdvisorCheckResultResponse(
result: json['result'] != null
? TrustedAdvisorCheckResult.fromJson(
json['result'] as Map<String, dynamic>)
: null,
);
}