checkout method

Future<void> checkout({
  1. required String table,
  2. required int version,
})

Checkout a version of a table (will put the table in a read only mode)

Implementation

Future<void> checkout({required String table, required int version}) async {
  await room.sendRequest("database.checkout", {"table": table, "version": version});
}