checkout method
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});
}