SuppressedDestinationAttributes.fromJson constructor
Implementation
factory SuppressedDestinationAttributes.fromJson(Map<String, dynamic> json) {
return SuppressedDestinationAttributes(
feedbackId: json['FeedbackId'] as String?,
messageId: json['MessageId'] as String?,
);
}