TrustedAdvisorCheckRefreshStatus.fromJson constructor
Implementation
factory TrustedAdvisorCheckRefreshStatus.fromJson(Map<String, dynamic> json) {
  return TrustedAdvisorCheckRefreshStatus(
    checkId: json['checkId'] as String,
    millisUntilNextRefreshable: json['millisUntilNextRefreshable'] as int,
    status: json['status'] as String,
  );
}