createScalarIndex method

Future<void> createScalarIndex({
  1. required String table,
  2. required String column,
  3. List<String>? namespace,
  4. String? branch,
  5. bool replace = false,
})

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