createScalarIndex method
Implementation
Future<void> createScalarIndex({
required String table,
required String column,
List<String>? namespace,
String? branch,
bool replace = false,
}) async {
await _invoke("create_scalar_index", {"table": table, "column": column, "namespace": namespace, "branch": branch, "replace": replace});
}