StreamingNotificationTarget.fromJson constructor
Implementation
factory StreamingNotificationTarget.fromJson(Map<String, dynamic> json) {
return StreamingNotificationTarget(
notificationTarget:
(json['NotificationTarget'] as String).toNotificationTarget(),
);
}