restore method
Implementation
Future<void> restore({required String table, required int version, List<String>? namespace, String? branch}) async {
await _invoke("restore", {"table": table, "version": version, "namespace": namespace, "branch": branch});
}