UpdateThemePermissionsResponse.fromJson constructor 
    
      
      UpdateThemePermissionsResponse.fromJson(
 - Map<String, dynamic> json
) 
    
    
  Implementation
  factory UpdateThemePermissionsResponse.fromJson(Map<String, dynamic> json) {
  return UpdateThemePermissionsResponse(
    permissions: (json['Permissions'] as List?)
        ?.whereNotNull()
        .map((e) => ResourcePermission.fromJson(e as Map<String, dynamic>))
        .toList(),
    requestId: json['RequestId'] as String?,
    themeArn: json['ThemeArn'] as String?,
    themeId: json['ThemeId'] as String?,
  );
}