SuppressedDestinationAttributes.fromJson constructor

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

Implementation

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