restore method

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

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