createFullTextSearchIndex method
Create a full-text search index on a given text column.
Implementation
Future<void> createFullTextSearchIndex({
required String table,
required String column,
List<String>? namespace,
bool replace = false,
}) async {
await room.sendRequest("database.create_full_text_search_index", {
"table": table,
"column": column,
"namespace": namespace,
"replace": replace,
});
}