DescribeDashboardResponse.fromJson constructor
Implementation
factory DescribeDashboardResponse.fromJson(Map<String, dynamic> json) {
return DescribeDashboardResponse(
dashboard: json['Dashboard'] != null
? Dashboard.fromJson(json['Dashboard'] as Map<String, dynamic>)
: null,
requestId: json['RequestId'] as String?,
);
}