DescribeDashboardResponse.fromJson constructor

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

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?,
  );
}