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