createIndex method
Future<void>
createIndex({
- required String table,
- required DatasetIndexConfig config,
- List<
String> ? namespace, - 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});
}