StreamingNotificationTarget.fromJson constructor

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

Implementation

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