DescribeThemeResponse.fromJson constructor

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

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