createIndex method

Future<void> createIndex({
  1. required String table,
  2. required DatasetIndexConfig config,
  3. List<String>? namespace,
  4. String? branch,
})

Implementation

Future<void> createIndex({required String table, required DatasetIndexConfig config, List<String>? namespace, String? branch}) async {
  await _invoke("create_index", {"table": table, "config": config.toJson(), "namespace": namespace, "branch": branch});
}