DeleteThemeResponse.fromJson constructor

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

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