This project is a fork of Dave Bettins rethink driver
The driver api tries to align with the javascript and python RethinkDB drivers. You can read their documentation here.
clone the repository:
git clone https://github.com/billysometimes/rethinkdb.git
open the project in Dart Editor and view examples.dart to see the available features and how to use them.
to include this driver in your own project add:
import 'lib/rethinkdb_driver.dart';
to your project.
or add the package to your pubspec.yaml file:
dependencies:
rethinkdb_driver: '>=0.2.0'
and import the package into your project:
import 'package:rethinkdb_driver/rethinkdb_driver.dart';