https://pub.dev/packages/rethinkdb_dart
I need a real-time updated JSON list that I can use to update a listview in Streambuilder.
But I'm not sure how to get a change feed from my Rethinkdb Server;
void main(List<String> arguments) async { var connection; try { connection = await r.connect(db: "test", host: "myhostip", port: 28015); var changes = await r.table('tv_shows').changes().run(connection); print("changes: $changes");The above code simply writes changes: Instance of 'Feed' to my console;
Any ideas what I should do?