checkout method

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

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, List<String>? namespace}) async {
  await room.sendRequest("database.checkout", {"table": table, "version": version, "namespace": namespace});
}