restore method
Restore a previous version of a table
Implementation
Future<void> restore({required String table, required int version, List<String>? namespace}) async {
await room.sendRequest("database.restore", {"table": table, "version": version, "namespace": namespace});
}