UpdateHavePendingNotifications.fromJson constructor
Parse from a json
Implementation
factory UpdateHavePendingNotifications.fromJson(Map<String, dynamic> json) =>
UpdateHavePendingNotifications(
haveDelayedNotifications: json['have_delayed_notifications'],
haveUnreceivedNotifications: json['have_unreceived_notifications'],
extra: json['@extra'],
clientId: json['@client_id'],
);