DescribeTrustedAdvisorCheckResultResponse.fromJson constructor

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

Implementation

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