DeleteThemeResponse.fromJson constructor
Implementation
factory DeleteThemeResponse.fromJson(Map<String, dynamic> json) {
return DeleteThemeResponse(
arn: json['Arn'] as String?,
requestId: json['RequestId'] as String?,
themeId: json['ThemeId'] as String?,
);
}