UpdateHavePendingNotifications.fromJson constructor

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

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'],
);