PushReceiverId.fromJson constructor
Parse from a json
Implementation
factory PushReceiverId.fromJson(Map<String, dynamic> json) => PushReceiverId(
      id: int.parse(json['id']),
      extra: json['@extra'],
      clientId: json['@client_id'],
    );