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